Files
build/tools/aconfig/test_cc/Android.bp
Joe Onorato ac692c5eae Make aconfig c++ generate only one header and only one .cc file
Bug: 283479529
Test: m aconfig_hello_world_cc && adb push $TOP/out/target/product/panther/system/bin/aconfig_hello_world_cc /system/bin && adb shell aconfig_hello_world_cc
Change-Id: I1890aff70262343e18a62fb2efb2fd0e13a48fb2
2023-07-21 09:12:01 -07:00

18 lines
337 B
Plaintext

cc_aconfig_library {
name: "aconfig_test_cc_library",
aconfig_declarations: "aconfig.test.flags",
}
cc_binary {
name: "aconfig_hello_world_cc",
srcs: [
"aconfig_hello_world.cpp",
],
static_libs: [
"aconfig_test_cc_library",
],
shared_libs: [
"server_configurable_flags",
],
}