mirror of
https://github.com/google/brotli.git
synced 2024-11-08 13:20:05 +00:00
1e7ea1d8e6
* 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...
22 lines
339 B
Python
22 lines
339 B
Python
workspace(name = "org_brotli")
|
|
|
|
local_repository(
|
|
name = "ignore_org_brotli_go",
|
|
path = "go",
|
|
)
|
|
|
|
local_repository(
|
|
name = "ignore_org_brotli_java",
|
|
path = "java",
|
|
)
|
|
|
|
local_repository(
|
|
name = "ignore_org_brotli_js",
|
|
path = "js",
|
|
)
|
|
|
|
local_repository(
|
|
name = "ignore_org_brotli_research",
|
|
path = "research",
|
|
)
|