mirror of
https://github.com/google/brotli.git
synced 2024-11-09 21:50:07 +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...
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
workspace(name = "org_brotli_java")
|
|
|
|
local_repository(
|
|
name = "org_brotli",
|
|
path = "..",
|
|
)
|
|
|
|
maven_jar(
|
|
name = "junit_junit",
|
|
artifact = "junit:junit:4.12",
|
|
)
|
|
|
|
new_http_archive(
|
|
name = "openjdk_linux",
|
|
urls = [
|
|
"https://mirror.bazel.build/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-linux_x64.tar.gz",
|
|
"https://bazel-mirror.storage.googleapis.com/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-linux_x64.tar.gz",
|
|
"https://cdn.azul.com/zulu/bin/zulu8.23.0.3-jdk8.0.144-linux_x64.tar.gz",
|
|
],
|
|
sha256 = "7e6284739c0e5b7142bc7a9adc61ced70dc5bb26b130b582b18e809013bcb251",
|
|
build_file_content = """
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
filegroup(
|
|
name = "jni_h",
|
|
srcs = ["zulu8.23.0.3-jdk8.0.144-linux_x64/include/jni.h"],
|
|
)
|
|
filegroup(
|
|
name = "jni_md_h",
|
|
srcs = ["zulu8.23.0.3-jdk8.0.144-linux_x64/include/linux/jni_md.h"],
|
|
)""",
|
|
)
|
|
|
|
new_http_archive(
|
|
name = "openjdk_macos",
|
|
urls = [
|
|
"https://mirror.bazel.build/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-macosx_x64.zip",
|
|
"https://bazel-mirror.storage.googleapis.com/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-macosx_x64.zip",
|
|
"https://cdn.azul.com/zulu/bin/zulu8.23.0.3-jdk8.0.144-macosx_x64.zip",
|
|
],
|
|
sha256 = "ff533364c9cbd3b271ab5328efe28e2dd6d7bae5b630098a5683f742ecf0709d",
|
|
build_file_content = """
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
filegroup(
|
|
name = "jni_md_h",
|
|
srcs = ["zulu8.23.0.3-jdk8.0.144-macosx_x64/include/darwin/jni_md.h"],
|
|
)""",
|
|
)
|
|
|
|
new_http_archive(
|
|
name = "openjdk_win",
|
|
urls = [
|
|
"https://mirror.bazel.build/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-win_x64.zip",
|
|
"https://bazel-mirror.storage.googleapis.com/openjdk/azul-zulu-8.23.0.3-jdk8.0.144/zulu8.23.0.3-jdk8.0.144-win_x64.zip",
|
|
"https://cdn.azul.com/zulu/bin/zulu8.23.0.3-jdk8.0.144-win_x64.zip",
|
|
],
|
|
sha256 = "f1d9d3341ef7c8c9baff3597953e99a6a7c64f8608ee62c03fdd7574b7655c02",
|
|
build_file_content = """
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
filegroup(
|
|
name = "jni_md_h",
|
|
srcs = ["zulu8.23.0.3-jdk8.0.144-win_x64/include/win32/jni_md.h"],
|
|
)""",
|
|
)
|