• 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-bazel",
13        "soong-bpf",
14        "soong-cc",
15        "soong-filesystem",
16        "soong-java",
17        "soong-provenance",
18        "soong-python",
19        "soong-rust",
20        "soong-sh",
21    ],
22    srcs: [
23        "androidmk.go",
24        "apex.go",
25        "apex_singleton.go",
26        "builder.go",
27        "deapexer.go",
28        "key.go",
29        "prebuilt.go",
30        "testing.go",
31        "vndk.go",
32    ],
33    testSrcs: [
34        "apex_test.go",
35        "bootclasspath_fragment_test.go",
36        "classpath_element_test.go",
37        "platform_bootclasspath_test.go",
38        "systemserver_classpath_fragment_test.go",
39        "vndk_test.go",
40    ],
41    pluginFor: ["soong_build"],
42}
43