27 lines
677 B
Plaintext
27 lines
677 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_llvm_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["external_llvm_license"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-llvm",
|
|
pkgPath: "android/soong/external/llvm",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-cc",
|
|
"soong-genrule",
|
|
],
|
|
srcs: [
|
|
"llvm.go",
|
|
"tblgen.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|