457ddef28e
rust_aconfig_library generates src/lib.rs and uses it to build library variants (dylib, rlib-rlib_std, and rlib-dylib_std) as of what `rust_library` produces Test: go test Change-Id: I6c4603691d4306c463c2e9521f5c11c30765b1e3
37 lines
891 B
Text
37 lines
891 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-aconfig",
|
|
pkgPath: "android/soong/aconfig",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"sbox_proto",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-bazel",
|
|
"soong-android",
|
|
"soong-java",
|
|
"soong-rust",
|
|
],
|
|
srcs: [
|
|
"aconfig_declarations.go",
|
|
"aconfig_values.go",
|
|
"aconfig_value_set.go",
|
|
"all_aconfig_declarations.go",
|
|
"cc_aconfig_library.go",
|
|
"init.go",
|
|
"java_aconfig_library.go",
|
|
"testing.go",
|
|
"rust_aconfig_library.go",
|
|
],
|
|
testSrcs: [
|
|
"aconfig_declarations_test.go",
|
|
"aconfig_values_test.go",
|
|
"aconfig_value_set_test.go",
|
|
"java_aconfig_library_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|