Fix reference to jsoncpp.BUILD and zlib.BUILD. Colon was in wrong place, because there's a BUILD file in third_party.

Export jsoncpp.BUILD. Otherwise the file can't be used from another package.

The problem was detected by Bazel 8 in WORKSPACE mode. This should be cherry-picked to 29. release.

PiperOrigin-RevId: 691587110
This commit is contained in:
Protobuf Team Bot 2024-10-30 16:12:40 -07:00 committed by Copybara-Service
parent 99e35c0fe5
commit 163cff9070
2 changed files with 3 additions and 2 deletions

View file

@ -69,7 +69,7 @@ def protobuf_deps():
if not native.existing_rule("zlib"):
http_archive(
name = "zlib",
build_file = Label("//:third_party/zlib.BUILD"),
build_file = Label("//third_party:zlib.BUILD"),
sha256 = "38ef96b8dfe510d42707d9c781877914792541133e1870841463bfa73f883e32",
strip_prefix = "zlib-1.3.1",
urls = [
@ -84,7 +84,7 @@ def protobuf_deps():
repo = "https://github.com/open-source-parsers/jsoncpp",
commit = "89e2973c754a9c02a49974d839779b151e95afd6", # 1.9.6
sha256 = "02f0804596c1e18c064d890ac9497fa17d585e822fcacf07ff8a8aa0b344a7bd",
build_file = Label("//:third_party/jsoncpp.BUILD"),
build_file = Label("//third_party:jsoncpp.BUILD"),
)
if not native.existing_rule("rules_cc"):

View file

@ -1,5 +1,6 @@
exports_files([
"BUILD.bazel",
"jsoncpp.BUILD",
"rules_fuzzing.patch",
"zlib.BUILD",
])