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-NCSA
7    default_applicable_licenses: ["external_llvm_license"],
8}
9
10cc_binary_host {
11    name: "FileCheck",
12    defaults: ["llvm-defaults"],
13    srcs: ["FileCheck.cpp"],
14    static_libs: ["libLLVMSupport"],
15    cflags: [
16        "-D__STDC_LIMIT_MACROS",
17        "-D__STDC_CONSTANT_MACROS",
18    ],
19}
20