File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,12 @@ static_library("ObjectYAML") {
2
2
output_name = " LLVMObjectYAML"
3
3
deps = [
4
4
" //llvm/lib/DebugInfo/CodeView" ,
5
+ " //llvm/lib/MC" ,
6
+ " //llvm/lib/Object" ,
5
7
" //llvm/lib/Support" ,
6
8
]
7
9
sources = [
10
+ " COFFEmitter.cpp" ,
8
11
" COFFYAML.cpp" ,
9
12
" CodeViewYAMLDebugSections.cpp" ,
10
13
" CodeViewYAMLSymbols.cpp" ,
@@ -13,12 +16,17 @@ static_library("ObjectYAML") {
13
16
" DWARFEmitter.cpp" ,
14
17
" DWARFVisitor.cpp" ,
15
18
" DWARFYAML.cpp" ,
19
+ " ELFEmitter.cpp" ,
16
20
" ELFYAML.cpp" ,
21
+ " MachOEmitter.cpp" ,
17
22
" MachOYAML.cpp" ,
23
+ " MinidumpEmitter.cpp" ,
18
24
" MinidumpYAML.cpp" ,
19
25
" ObjectYAML.cpp" ,
26
+ " WasmEmitter.cpp" ,
20
27
" WasmYAML.cpp" ,
21
28
" XCOFFYAML.cpp" ,
22
29
" YAML.cpp" ,
30
+ " yaml2obj.cpp" ,
23
31
]
24
32
}
Original file line number Diff line number Diff line change 1
1
executable (" yaml2obj" ) {
2
2
deps = [
3
- " //llvm/lib/DebugInfo/CodeView" ,
4
- " //llvm/lib/MC" ,
5
- " //llvm/lib/Object" ,
6
3
" //llvm/lib/ObjectYAML" ,
7
4
" //llvm/lib/Support" ,
8
5
]
9
6
sources = [
10
- " yaml2coff.cpp" ,
11
- " yaml2elf.cpp" ,
12
- " yaml2macho.cpp" ,
13
- " yaml2minidump.cpp" ,
14
7
" yaml2obj.cpp" ,
15
- " yaml2wasm.cpp" ,
16
8
]
17
9
}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ unittest("ObjectYAMLTests") {
8
8
]
9
9
sources = [
10
10
" MinidumpYAMLTest.cpp" ,
11
+ " YAML2ObjTest.cpp" ,
11
12
" YAMLTest.cpp" ,
12
13
]
13
14
}
You can’t perform that action at this time.
0 commit comments