summaryrefslogtreecommitdiff
path: root/bazel/Android.bp
blob: b7c185a6104a1be8e726e71c0e17dfbede40a736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

bootstrap_go_package {
    name: "soong-bazel",
    pkgPath: "android/soong/bazel",
    srcs: [
        "aquery.go",
        "constants.go",
        "properties.go",
    ],
    testSrcs: [
        "aquery_test.go",
        "properties_test.go",
    ],
    pluginFor: [
        "soong_build",
    ],
    deps: [
        "blueprint",
    ],
}