blob: 41224ecd55c6500c6412a8438a551a53f758b8b1 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Jaewoong Jung4b79e982020-06-01 10:45:49 -07005bootstrap_go_package {
6 name: "soong-apex",
7 pkgPath: "android/soong/apex",
8 deps: [
9 "blueprint",
10 "soong",
11 "soong-android",
Rupert Shuttlewortha9d76dd2021-07-02 07:17:16 -040012 "soong-bazel",
markchien2f59ec92020-09-02 16:23:38 +080013 "soong-bpf",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070014 "soong-cc",
Jiyong Park12a719c2021-01-07 15:31:24 +090015 "soong-filesystem",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070016 "soong-java",
Wei Li340ee8e2022-03-18 17:33:24 -070017 "soong-provenance",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070018 "soong-python",
Jiyong Park99644e92020-11-17 22:21:02 +090019 "soong-rust",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070020 "soong-sh",
21 ],
22 srcs: [
23 "androidmk.go",
24 "apex.go",
25 "apex_singleton.go",
26 "builder.go",
Paul Duffin064b70c2020-11-02 17:32:38 +000027 "deapexer.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070028 "key.go",
29 "prebuilt.go",
Paul Duffin37aad602021-03-08 09:47:16 +000030 "testing.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070031 "vndk.go",
32 ],
33 testSrcs: [
34 "apex_test.go",
Paul Duffin7771eba2021-04-23 14:25:28 +010035 "bootclasspath_fragment_test.go",
Paul Duffine245b612021-06-10 08:59:41 +010036 "classpath_element_test.go",
Paul Duffinb432df92021-03-22 22:09:42 +000037 "platform_bootclasspath_test.go",
satayev333a1732021-05-17 21:35:26 +010038 "systemserver_classpath_fragment_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070039 "vndk_test.go",
40 ],
41 pluginFor: ["soong_build"],
42}