• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5bootstrap_go_package {
6    name: "soong-apex",
7    pkgPath: "android/soong/apex",
8    deps: [
9        "blueprint",
10        "soong",
11        "soong-android",
12        "soong-bpf",
13        "soong-cc",
14        "soong-filesystem",
15        "soong-java",
16        "soong-python",
17        "soong-rust",
18        "soong-sh",
19    ],
20    srcs: [
21        "androidmk.go",
22        "apex.go",
23        "apex_singleton.go",
24        "builder.go",
25        "deapexer.go",
26        "key.go",
27        "prebuilt.go",
28        "testing.go",
29        "vndk.go",
30    ],
31    testSrcs: [
32        "apex_test.go",
33        "bootclasspath_fragment_test.go",
34        "classpath_element_test.go",
35        "platform_bootclasspath_test.go",
36        "systemserver_classpath_fragment_test.go",
37        "vndk_test.go",
38    ],
39    pluginFor: ["soong_build"],
40}
41