Home | History | Annotate | Download | only in TableGen
      1 cc_binary_host {
      2     name: "clang-tblgen",
      3     defaults: ["llvm-defaults"],
      4     srcs: ["*.cpp"],
      5 
      6     static_libs: [
      7         "libLLVMTableGen",
      8         "libLLVMSupport",
      9     ],
     10 
     11     tidy_checks: [
     12         "-google-runtime-member-string-references",
     13     ],
     14     target: {
     15         windows: {
     16             host_ldlibs: [
     17                 "-limagehlp",
     18                 "-lpsapi",
     19                 "-lversion",
     20             ],
     21         },
     22     },
     23 }
     24