mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
* Inverse bazel workspace tree. Now each subproject directly depends on root (c) project. This helps to mitigate Bazel bug bazelbuild/bazel#2391; short summary: Bazel does not work if referenced subproject `WORKSPACE` uses any repositories that embedding project does not. Bright side: building C project is much faster; no need to download closure, go and JDK...
15 lines
500 B
Python
15 lines
500 B
Python
workspace(name = "org_brotli_js")
|
|
|
|
http_archive(
|
|
name = "io_bazel_rules_closure",
|
|
sha256 = "a80acb69c63d5f6437b099c111480a4493bad4592015af2127a2f49fb7512d8d",
|
|
strip_prefix = "rules_closure-0.7.0",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/0.7.0.tar.gz",
|
|
"https://github.com/bazelbuild/rules_closure/archive/0.7.0.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
|
|
closure_repositories()
|