Skip to content

Commit 6854ad9

Browse files
committed
[bazel][lldb] "Fix" the build after b852fb1
b852fb1 split out ValueObject, but it's still all a big pile of dependency spaghetti so just build it with Core.
1 parent 43dda4b commit 6854ad9

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

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

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,10 @@ gentbl_cc_library(
607607

608608
cc_library(
609609
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+
]),
611614
strip_include_prefix = "include",
612615
deps = [
613616
":BreakpointHeaders",
@@ -627,8 +630,14 @@ cc_library(
627630

628631
cc_library(
629632
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+
]),
632641
strip_include_prefix = "include",
633642
deps = [
634643
":BreakpointHeaders",

0 commit comments

Comments
 (0)