[mlir][Bazel] Adjust BUILD file for 930744fcda

This commit is contained in:
Adrian Kuegel 2023-03-20 15:10:12 +01:00
parent 015cd84d3c
commit cc69d58d79

View File

@ -3576,6 +3576,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([
@ -6935,6 +6950,7 @@ cc_library(
":BytecodeWriter",
":Debug",
":IR",
":Observers",
":Parser",
":Pass",
":Support",