• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// yaml-bench executable for the host
2// =====================================================
3
4package {
5    // See: http://go/android-license-faq
6    // A large-scale-change added 'default_applicable_licenses' to import
7    // all of the 'license_kinds' from "external_llvm_license"
8    // to get the below license kinds:
9    //   SPDX-license-identifier-NCSA
10    default_applicable_licenses: ["external_llvm_license"],
11}
12
13cc_binary_host {
14    name: "yaml-bench",
15    defaults: ["llvm-defaults"],
16    srcs: ["YAMLBench.cpp"],
17    static_libs: ["libLLVMSupport"],
18}
19