aboutsummaryrefslogtreecommitdiff
path: root/utils/FileCheck/Android.bp
blob: 6d528cd8152187db606b6a030816734fa7c40038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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-NCSA
    default_applicable_licenses: ["external_llvm_license"],
}

cc_binary_host {
    name: "FileCheck",
    defaults: ["llvm-defaults"],
    srcs: ["FileCheck.cpp"],
    static_libs: ["libLLVMSupport"],
    cflags: [
        "-D__STDC_LIMIT_MACROS",
        "-D__STDC_CONSTANT_MACROS",
    ],
}