• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//===---------------------------------------------------------------===
2// llvm-diff command line tool
3//===---------------------------------------------------------------===
4
5cc_binary_host {
6    name: "llvm-diff",
7    defaults: ["llvm-defaults"],
8    srcs: [
9        "llvm-diff.cpp",
10        "DiffConsumer.cpp",
11        "DifferenceEngine.cpp",
12        "DiffLog.cpp",
13    ],
14    static_libs: [
15        "libLLVMIRReader",
16        "libLLVMBitReader",
17        "libLLVMAsmParser",
18        "libLLVMCore",
19        "libLLVMSupport",
20    ],
21}
22