Add re2 dep back to Bazel build (#5721)

This explicit dep was removed in #5707 but it is still used by the test
library. Not sure why the Bazel build didn't catch the indirect
dependence on another module but it is causing build failures
downstream.
This commit is contained in:
Natalie Chouinard 2024-06-24 14:17:34 -04:00 committed by GitHub
parent 0cfe9e7219
commit b9d8114695
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -499,6 +499,7 @@ cc_library(
":spirv_tools_link",
":test_lib",
"@effcee//:effcee",
"@re2//:re2",
],
)

View File

@ -6,6 +6,12 @@ local_path_override(
path = "external/googletest",
)
bazel_dep(name = "re2", dev_dependency = True)
local_path_override(
module_name = "re2",
path = "external/re2",
)
bazel_dep(name = "effcee", dev_dependency = True)
local_path_override(
module_name = "effcee",