File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed
utils/bazel/llvm-project-overlay/lldb Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -634,14 +634,20 @@ cc_library(
634634
635635cc_library (
636636 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+ ),
645651 includes = ["include" ],
646652 deps = [
647653 ":BreakpointHeaders" ,
You can’t perform that action at this time.
0 commit comments