File tree 1 file changed +12
-3
lines changed
utils/bazel/llvm-project-overlay/lldb 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -607,7 +607,10 @@ gentbl_cc_library(
607
607
608
608
cc_library (
609
609
name = "CoreHeaders" ,
610
- hdrs = glob (["include/lldb/Core/**/*.h" ]),
610
+ hdrs = glob ([
611
+ "include/lldb/Core/**/*.h" ,
612
+ "include/lldb/ValueObject/**/*.h" , # This should be its own library.
613
+ ]),
611
614
strip_include_prefix = "include" ,
612
615
deps = [
613
616
":BreakpointHeaders" ,
@@ -627,8 +630,14 @@ cc_library(
627
630
628
631
cc_library (
629
632
name = "Core" ,
630
- srcs = glob (["source/Core/**/*.cpp" ]),
631
- hdrs = glob (["include/lldb/Core/**/*.h" ]),
633
+ srcs = glob ([
634
+ "source/Core/**/*.cpp" ,
635
+ "source/ValueObject/**/*.cpp" , # This should be its own library.
636
+ ]),
637
+ hdrs = glob ([
638
+ "include/lldb/Core/**/*.h" ,
639
+ "include/lldb/ValueObject/**/*.h" , # This should be its own library.
640
+ ]),
632
641
strip_include_prefix = "include" ,
633
642
deps = [
634
643
":BreakpointHeaders" ,
You can’t perform that action at this time.
0 commit comments