File tree 1 file changed +14
-8
lines changed
utils/bazel/llvm-project-overlay/lldb
1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -634,14 +634,20 @@ cc_library(
634
634
635
635
cc_library (
636
636
name = "Core" ,
637
- srcs = glob ([
638
- "source/Core/**/*.cpp" ,
639
- "source/ValueObject/**/*.cpp" , # This should be its own library.
640
- ]),
641
- hdrs = glob ([
642
- "include/lldb/Core/**/*.h" ,
643
- "include/lldb/ValueObject/**/*.h" , # This should be its own library.
644
- ]),
637
+ srcs = glob (
638
+ [
639
+ "source/Core/**/*.cpp" ,
640
+ "source/ValueObject/**/*.cpp" , # This should be its own library.
641
+ ],
642
+ exclude = ["source/Core/Telemetry.cpp" ],
643
+ ),
644
+ hdrs = glob (
645
+ [
646
+ "include/lldb/Core/**/*.h" ,
647
+ "include/lldb/ValueObject/**/*.h" , # This should be its own library.
648
+ ],
649
+ exclude = ["include/lldb/Core/Telemetry.h" ],
650
+ ),
645
651
includes = ["include" ],
646
652
deps = [
647
653
":BreakpointHeaders" ,
You can’t perform that action at this time.
0 commit comments