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