21 lines
536 B
Text
21 lines
536 B
Text
//===---------------------------------------------------------------===
|
|
// llvm-diff command line tool
|
|
//===---------------------------------------------------------------===
|
|
|
|
cc_binary_host {
|
|
name: "llvm-diff",
|
|
defaults: ["llvm-defaults"],
|
|
srcs: [
|
|
"llvm-diff.cpp",
|
|
"DiffConsumer.cpp",
|
|
"DifferenceEngine.cpp",
|
|
"DiffLog.cpp",
|
|
],
|
|
static_libs: [
|
|
"libLLVMIRReader",
|
|
"libLLVMBitReader",
|
|
"libLLVMAsmParser",
|
|
"libLLVMCore",
|
|
"libLLVMSupport",
|
|
],
|
|
}
|