2023-05-09 17:14:14 +02:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
|
|
|
bootstrap_go_package {
|
2023-06-22 00:16:23 +02:00
|
|
|
name: "soong-aconfig",
|
|
|
|
pkgPath: "android/soong/aconfig",
|
2023-05-09 17:14:14 +02:00
|
|
|
deps: [
|
|
|
|
"blueprint",
|
|
|
|
"blueprint-pathtools",
|
|
|
|
"sbox_proto",
|
|
|
|
"soong",
|
|
|
|
"soong-android",
|
|
|
|
"soong-bazel",
|
2023-06-01 23:42:59 +02:00
|
|
|
"soong-android",
|
|
|
|
"soong-java",
|
2023-08-02 19:50:26 +02:00
|
|
|
"soong-rust",
|
2023-05-09 17:14:14 +02:00
|
|
|
],
|
|
|
|
srcs: [
|
2023-06-22 00:16:23 +02:00
|
|
|
"aconfig_declarations.go",
|
|
|
|
"aconfig_values.go",
|
|
|
|
"aconfig_value_set.go",
|
2023-06-22 03:10:28 +02:00
|
|
|
"all_aconfig_declarations.go",
|
2023-07-19 01:58:16 +02:00
|
|
|
"cc_aconfig_library.go",
|
2023-05-09 17:14:14 +02:00
|
|
|
"init.go",
|
2023-06-22 00:16:23 +02:00
|
|
|
"java_aconfig_library.go",
|
2023-06-01 23:42:59 +02:00
|
|
|
"testing.go",
|
2023-08-02 19:50:26 +02:00
|
|
|
"rust_aconfig_library.go",
|
2023-05-09 17:14:14 +02:00
|
|
|
],
|
|
|
|
testSrcs: [
|
2023-06-22 00:16:23 +02:00
|
|
|
"aconfig_declarations_test.go",
|
|
|
|
"aconfig_values_test.go",
|
|
|
|
"aconfig_value_set_test.go",
|
2023-07-16 22:20:33 +02:00
|
|
|
"java_aconfig_library_test.go",
|
2023-09-14 20:52:49 +02:00
|
|
|
"cc_aconfig_library_test.go",
|
|
|
|
"rust_aconfig_library_test.go",
|
2023-05-09 17:14:14 +02:00
|
|
|
],
|
|
|
|
pluginFor: ["soong_build"],
|
|
|
|
}
|