xref: /aosp_15_r20/external/llvm/utils/count/Android.bp (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1//===---------------------------------------------------------------===
2// count 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: "count",
16    defaults: ["llvm-defaults"],
17    srcs: ["count.c"],
18}
19