[mlir][Bazel] Adjust BUILD file for 930744fcdad7b326dd0337622b6e8dc99efcfa60
authorAdrian Kuegel <akuegel@google.com>
Mon, 20 Mar 2023 14:10:12 +0000 (15:10 +0100)
committerAdrian Kuegel <akuegel@google.com>
Mon, 20 Mar 2023 14:11:01 +0000 (15:11 +0100)
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

index c9a68e1..3bca5fc 100644 (file)
@@ -3577,6 +3577,21 @@ cc_library(
 )
 
 cc_library(
+    name = "Observers",
+    srcs = glob([
+        "lib/Debug/Observers/*.cpp",
+        "lib/Debug/Observers/*.h",
+    ]),
+    hdrs = glob(["include/mlir/Debug/Observers/*.h"]),
+    includes = ["include"],
+    deps = [
+        ":Debug",
+        ":IR",
+        "//llvm:Support",
+    ],
+)
+
+cc_library(
     name = "BreakpointManagers",
     srcs = glob([
         "lib/Debug/BreakpointManagers/*.cpp",
@@ -6935,6 +6950,7 @@ cc_library(
         ":BytecodeWriter",
         ":Debug",
         ":IR",
+        ":Observers",
         ":Parser",
         ":Pass",
         ":Support",