|
| 1 | +static_library("ValueObject") { |
| 2 | + output_name = "lldbValueObject" |
| 3 | + configs += [ "//llvm/utils/gn/build:lldb_code" ] |
| 4 | + deps = [ |
| 5 | + # FIXME: 3-hop dependency cycle |
| 6 | + #"//lldb/source/Breakpoint", |
| 7 | + # FIXME: 3-hop dependency cycle |
| 8 | + #"//lldb/source/DataFormatters", |
| 9 | + # FIXME: 3-hop dependency cycle |
| 10 | + #"//lldb/source/Expression", |
| 11 | + # FIXME: 3-hop dependency cycle |
| 12 | + #"//lldb/source/Symbol", |
| 13 | + # FIXME: 3-hop dependency cycle |
| 14 | + #"//lldb/source/Target", |
| 15 | + "//lldb/source/Utility", |
| 16 | + |
| 17 | + # FIXME: 3-hop dependency cycle |
| 18 | + #"//lldb/source/Plugins/Language/CPlusPlus", |
| 19 | + # FIXME: 3-hop dependency cycle |
| 20 | + #"//lldb/source/Plugins/Language/ObjC", |
| 21 | + "//llvm/lib/Demangle", |
| 22 | + "//llvm/lib/Support", |
| 23 | + "//llvm/lib/TargetParser", |
| 24 | + ] |
| 25 | + include_dirs = [ ".." ] |
| 26 | + sources = [ |
| 27 | + "ValueObject.cpp", |
| 28 | + "ValueObjectCast.cpp", |
| 29 | + "ValueObjectChild.cpp", |
| 30 | + "ValueObjectConstResult.cpp", |
| 31 | + "ValueObjectConstResultCast.cpp", |
| 32 | + "ValueObjectConstResultChild.cpp", |
| 33 | + "ValueObjectConstResultImpl.cpp", |
| 34 | + "ValueObjectDynamicValue.cpp", |
| 35 | + "ValueObjectList.cpp", |
| 36 | + "ValueObjectMemory.cpp", |
| 37 | + "ValueObjectRegister.cpp", |
| 38 | + "ValueObjectSyntheticFilter.cpp", |
| 39 | + "ValueObjectUpdater.cpp", |
| 40 | + "ValueObjectVariable.cpp", |
| 41 | + "ValueObjectVTable.cpp", |
| 42 | + ] |
| 43 | +} |
0 commit comments