Skip to content

Commit 87951c8

Browse files
committed
gn build: Merge r368021
llvm-svn: 368025
1 parent 612b038 commit 87951c8

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

llvm/utils/gn/secondary/llvm/lib/ObjectYAML/BUILD.gn

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ static_library("ObjectYAML") {
22
output_name = "LLVMObjectYAML"
33
deps = [
44
"//llvm/lib/DebugInfo/CodeView",
5+
"//llvm/lib/MC",
6+
"//llvm/lib/Object",
57
"//llvm/lib/Support",
68
]
79
sources = [
10+
"COFFEmitter.cpp",
811
"COFFYAML.cpp",
912
"CodeViewYAMLDebugSections.cpp",
1013
"CodeViewYAMLSymbols.cpp",
@@ -13,12 +16,17 @@ static_library("ObjectYAML") {
1316
"DWARFEmitter.cpp",
1417
"DWARFVisitor.cpp",
1518
"DWARFYAML.cpp",
19+
"ELFEmitter.cpp",
1620
"ELFYAML.cpp",
21+
"MachOEmitter.cpp",
1722
"MachOYAML.cpp",
23+
"MinidumpEmitter.cpp",
1824
"MinidumpYAML.cpp",
1925
"ObjectYAML.cpp",
26+
"WasmEmitter.cpp",
2027
"WasmYAML.cpp",
2128
"XCOFFYAML.cpp",
2229
"YAML.cpp",
30+
"yaml2obj.cpp",
2331
]
2432
}
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
executable("yaml2obj") {
22
deps = [
3-
"//llvm/lib/DebugInfo/CodeView",
4-
"//llvm/lib/MC",
5-
"//llvm/lib/Object",
63
"//llvm/lib/ObjectYAML",
74
"//llvm/lib/Support",
85
]
96
sources = [
10-
"yaml2coff.cpp",
11-
"yaml2elf.cpp",
12-
"yaml2macho.cpp",
13-
"yaml2minidump.cpp",
147
"yaml2obj.cpp",
15-
"yaml2wasm.cpp",
168
]
179
}

llvm/utils/gn/secondary/llvm/unittests/ObjectYAML/BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ unittest("ObjectYAMLTests") {
88
]
99
sources = [
1010
"MinidumpYAMLTest.cpp",
11+
"YAML2ObjTest.cpp",
1112
"YAMLTest.cpp",
1213
]
1314
}

0 commit comments

Comments
 (0)