+++ /dev/null
-static_library("OptRemarks") {
- output_name = "LLVMOptRemarks"
- deps = [
- "//llvm/lib/Support",
- ]
-
- sources = [
- "OptRemarksParser.cpp",
- ]
-}
--- /dev/null
+static_library("Remarks") {
+ output_name = "LLVMRemarks"
+ deps = [
+ "//llvm/lib/Support",
+ ]
+
+ sources = [
+ "RemarkParser.cpp",
+ ]
+}
"//llvm/lib/Demangle",
"//llvm/lib/IR",
"//llvm/lib/Object",
- "//llvm/lib/OptRemarks",
+ "//llvm/lib/Remarks",
"//llvm/lib/Support",
]
sources = [
"MI:MITests",
"Object:ObjectTests",
"ObjectYAML:ObjectYAMLTests",
- "OptRemarks:OptRemarksTests",
"Option:OptionTests",
"Passes:PluginsTests",
"ProfileData:ProfileDataTests",
+ "Remarks:RemarksTests",
"Support:SupportTests",
"Support/DynamicLibrary:DynamicLibraryTests",
"TextAPI:TextAPITests",
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",
]
}