[bazel] Fix layering check after 0610e2f

`BytecodeWriter.h` is now included in `IR.h`, and the corresponding dependency should be moved to `header_deps`. This change fixes Google's internal build, which seems to have a stricter layering check than bazel's, but it's still the right thing to do.

Differential Revision: https://reviews.llvm.org/D149576
This commit is contained in:
Christian Sigg
2023-05-01 12:04:32 +02:00
parent 5e74a3dc2d
commit 896af9e48d

View File

@@ -372,6 +372,7 @@ mlir_c_api_cc_library(
"include/mlir/CAPI/Wrap.h",
],
header_deps = [
":BytecodeWriter",
":IR",
":Pass",
":Support",
@@ -380,7 +381,6 @@ mlir_c_api_cc_library(
includes = ["include"],
deps = [
":AsmParser",
":BytecodeWriter",
":ConversionPassIncGen",
":FuncDialect",
":InferTypeOpInterface",