gn build: Merge r355439.

llvm-svn: 355480
This commit is contained in:
Peter Collingbourne 2019-03-06 03:08:06 +00:00
parent 5ee9abd4c8
commit c2d6b84d3c
5 changed files with 15 additions and 15 deletions

View File

@ -1,10 +0,0 @@
static_library("OptRemarks") {
output_name = "LLVMOptRemarks"
deps = [
"//llvm/lib/Support",
]
sources = [
"OptRemarksParser.cpp",
]
}

View File

@ -0,0 +1,10 @@
static_library("Remarks") {
output_name = "LLVMRemarks"
deps = [
"//llvm/lib/Support",
]
sources = [
"RemarkParser.cpp",
]
}

View File

@ -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 = [

View File

@ -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",

View File

@ -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",
]
}