You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
536 B
21 lines
536 B
//===---------------------------------------------------------------=== |
|
// 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", |
|
], |
|
}
|
|
|