2021-02-04 03:08:28 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
bootstrap_go_package {
|
|
|
|
name: "soong-apex",
|
|
|
|
pkgPath: "android/soong/apex",
|
|
|
|
deps: [
|
|
|
|
"blueprint",
|
|
|
|
"soong",
|
|
|
|
"soong-android",
|
2020-09-02 10:23:38 +02:00
|
|
|
"soong-bpf",
|
2020-06-01 19:45:49 +02:00
|
|
|
"soong-cc",
|
2021-01-07 07:31:24 +01:00
|
|
|
"soong-filesystem",
|
2020-06-01 19:45:49 +02:00
|
|
|
"soong-java",
|
|
|
|
"soong-python",
|
2020-11-17 14:21:02 +01:00
|
|
|
"soong-rust",
|
2020-06-01 19:45:49 +02:00
|
|
|
"soong-sh",
|
|
|
|
],
|
|
|
|
srcs: [
|
|
|
|
"androidmk.go",
|
|
|
|
"apex.go",
|
|
|
|
"apex_singleton.go",
|
|
|
|
"builder.go",
|
2020-11-02 18:32:38 +01:00
|
|
|
"deapexer.go",
|
2020-06-01 19:45:49 +02:00
|
|
|
"key.go",
|
|
|
|
"prebuilt.go",
|
2021-03-08 10:47:16 +01:00
|
|
|
"testing.go",
|
2020-06-01 19:45:49 +02:00
|
|
|
"vndk.go",
|
|
|
|
],
|
|
|
|
testSrcs: [
|
|
|
|
"apex_test.go",
|
2021-04-23 15:25:28 +02:00
|
|
|
"bootclasspath_fragment_test.go",
|
2021-03-22 23:09:42 +01:00
|
|
|
"platform_bootclasspath_test.go",
|
2021-05-17 22:35:26 +02:00
|
|
|
"systemserver_classpath_fragment_test.go",
|
2020-06-01 19:45:49 +02:00
|
|
|
"vndk_test.go",
|
|
|
|
],
|
|
|
|
pluginFor: ["soong_build"],
|
|
|
|
}
|