forked from OSchip/llvm-project
parent
5ee9abd4c8
commit
c2d6b84d3c
|
@ -1,10 +0,0 @@
|
|||
static_library("OptRemarks") {
|
||||
output_name = "LLVMOptRemarks"
|
||||
deps = [
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
|
||||
sources = [
|
||||
"OptRemarksParser.cpp",
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
static_library("Remarks") {
|
||||
output_name = "LLVMRemarks"
|
||||
deps = [
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
|
||||
sources = [
|
||||
"RemarkParser.cpp",
|
||||
]
|
||||
}
|
|
@ -3,7 +3,7 @@ executable("llvm-opt-report") {
|
|||
"//llvm/lib/Demangle",
|
||||
"//llvm/lib/IR",
|
||||
"//llvm/lib/Object",
|
||||
"//llvm/lib/OptRemarks",
|
||||
"//llvm/lib/Remarks",
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
sources = [
|
||||
|
|
|
@ -25,10 +25,10 @@ group("unittests") {
|
|||
"MI:MITests",
|
||||
"Object:ObjectTests",
|
||||
"ObjectYAML:ObjectYAMLTests",
|
||||
"OptRemarks:OptRemarksTests",
|
||||
"Option:OptionTests",
|
||||
"Passes:PluginsTests",
|
||||
"ProfileData:ProfileDataTests",
|
||||
"Remarks:RemarksTests",
|
||||
"Support:SupportTests",
|
||||
"Support/DynamicLibrary:DynamicLibraryTests",
|
||||
"TextAPI:TextAPITests",
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import("//llvm/utils/unittest/unittest.gni")
|
||||
|
||||
unittest("OptRemarksTests") {
|
||||
unittest("RemarksTests") {
|
||||
deps = [
|
||||
"//llvm/lib/OptRemarks",
|
||||
"//llvm/lib/Remarks",
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
sources = [
|
||||
"OptRemarksParsingTest.cpp",
|
||||
"RemarksParsingTest.cpp",
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue