xref: /aosp_15_r20/external/llvm/utils/not/Android.bp (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1//===---------------------------------------------------------------===
2// not command line tool
3//===---------------------------------------------------------------===
4
5package {
6    // See: http://go/android-license-faq
7    // A large-scale-change added 'default_applicable_licenses' to import
8    // all of the 'license_kinds' from "external_llvm_license"
9    // to get the below license kinds:
10    //   SPDX-license-identifier-NCSA
11    default_applicable_licenses: ["external_llvm_license"],
12}
13
14cc_binary_host {
15    name: "not",
16    defaults: ["llvm-defaults"],
17    srcs: ["not.cpp"],
18    static_libs: [
19        "libLLVMCore",
20        "libLLVMSupport",
21    ],
22}
23