Files
build_soong/device_config/Android.bp
Joe Onorato 175073c472 Make aconfig flags generate a library instead of a srcjar.
Also add unit tests for the rest of device_config

Bug: 283475679
Test: m nothing (soong unit tests)
Change-Id: Iee18a1f2f2cbb23e8c8d84c54e903b32be29a693
2023-06-09 06:16:06 -07:00

33 lines
786 B
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
bootstrap_go_package {
name: "soong-device_config",
pkgPath: "android/soong/device_config",
deps: [
"blueprint",
"blueprint-pathtools",
"sbox_proto",
"soong",
"soong-android",
"soong-bazel",
"soong-android",
"soong-java",
],
srcs: [
"device_config_definitions.go",
"device_config_values.go",
"device_config_value_set.go",
"init.go",
"java_device_config_definitions_library.go",
"testing.go",
],
testSrcs: [
"device_config_definitions_test.go",
"device_config_values_test.go",
"device_config_value_set_test.go",
],
pluginFor: ["soong_build"],
}