Bazel fixes for 81f2f4dfb2

This commit is contained in:
David Blaikie 2022-03-04 01:02:18 +00:00
parent 070af48d13
commit 61e1581fa3
1 changed files with 18 additions and 0 deletions

View File

@ -8433,6 +8433,22 @@ cc_binary(
],
)
cc_library(
name = "PDLLODS",
srcs = glob(
[
"lib/Tools/PDLL/ODS/*.cpp",
"lib/Tools/PDLL/ODS/*.h",
],
),
hdrs = glob(["include/mlir/Tools/PDLL/ODS/*.h"]),
includes = ["include"],
deps = [
":Support",
"//llvm:Support",
],
)
cc_library(
name = "PDLLAST",
srcs = glob(
@ -8481,9 +8497,11 @@ cc_library(
includes = ["include"],
deps = [
":PDLLAST",
":PDLLODS",
":Support",
":TableGen",
"//llvm:Support",
"//llvm:TableGen",
],
)