1static_library("Breakpoint") { 2 output_name = "lldbBreakpoint" 3 configs += [ "//llvm/utils/gn/build:lldb_code" ] 4 deps = [ 5 "//lldb/include/lldb/Host:Config", 6 "//lldb/source/Core", 7 "//lldb/source/Expression", 8 "//lldb/source/Interpreter", 9 "//lldb/source/Symbol", 10 "//lldb/source/Target", 11 "//lldb/source/Utility", 12 "//lldb/source/ValueObject", 13 "//llvm/lib/Support", 14 ] 15 sources = [ 16 "Breakpoint.cpp", 17 "BreakpointID.cpp", 18 "BreakpointIDList.cpp", 19 "BreakpointList.cpp", 20 "BreakpointLocation.cpp", 21 "BreakpointLocationCollection.cpp", 22 "BreakpointLocationList.cpp", 23 "BreakpointName.cpp", 24 "BreakpointOptions.cpp", 25 "BreakpointPrecondition.cpp", 26 "BreakpointResolver.cpp", 27 "BreakpointResolverAddress.cpp", 28 "BreakpointResolverFileLine.cpp", 29 "BreakpointResolverFileRegex.cpp", 30 "BreakpointResolverName.cpp", 31 "BreakpointResolverScripted.cpp", 32 "BreakpointSite.cpp", 33 "StopPointSiteList.cpp", 34 "Stoppoint.cpp", 35 "StoppointCallbackContext.cpp", 36 "StoppointSite.cpp", 37 "Watchpoint.cpp", 38 "WatchpointAlgorithms.cpp", 39 "WatchpointList.cpp", 40 "WatchpointOptions.cpp", 41 "WatchpointResource.cpp", 42 ] 43} 44