• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "external_llvm_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["external_llvm_license"],
8}
9
10bootstrap_go_package {
11    name: "soong-llvm",
12    pkgPath: "android/soong/external/llvm",
13    deps: [
14        "blueprint",
15        "blueprint-pathtools",
16        "soong",
17        "soong-android",
18        "soong-cc",
19        "soong-genrule",
20    ],
21    srcs: [
22        "llvm.go",
23        "tblgen.go",
24    ],
25    pluginFor: ["soong_build"],
26}
27