Skip to content

Commit 3f8bc23

Browse files
dwblaikieIcohedron
authored andcommitted
Rough attempt to fix lldb bazel BUILD file
1 parent 23a961e commit 3f8bc23

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

utils/bazel/llvm-project-overlay/lldb/BUILD.bazel

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -634,14 +634,20 @@ cc_library(
634634

635635
cc_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",

0 commit comments

Comments
 (0)