Files
build/tools/aconfig/aflags/Android.bp
Ted Bauer 6d4db66026 aflags: add new storage mode
Add a mode that lets the user use the new aconfig storage.

Bug: 324436145
Test: adb shell aflags list --use-new-storage
Change-Id: I97d7a229a64c6ef1aea844281298ce5449b02570
2024-03-29 16:57:42 +00:00

33 lines
631 B
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
rust_defaults {
name: "aflags.defaults",
edition: "2021",
clippy_lints: "android",
lints: "android",
srcs: ["src/main.rs"],
rustlibs: [
"libaconfig_protos",
"libaconfig_storage_read_api",
"libaconfig_storage_file",
"libanyhow",
"libclap",
"libnix",
"libprotobuf",
"libregex",
],
}
rust_binary {
name: "aflags",
defaults: ["aflags.defaults"],
}
rust_test_host {
name: "aflags.test",
defaults: ["aflags.defaults"],
test_suites: ["general-tests"],
}