Kristina Chodorow | 93fbc3e | 2016-04-27 17:03:28 +0000 | [diff] [blame] | 1 | workspace(name = "io_bazel") |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 2 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") |
Kristina Chodorow | 93fbc3e | 2016-04-27 17:03:28 +0000 | [diff] [blame] | 3 | |
David Chen | b78bbd5 | 2016-03-16 13:17:57 +0000 | [diff] [blame] | 4 | # Protobuf expects an //external:python_headers label which would contain the |
| 5 | # Python headers if fast Python protos is enabled. Since we are not using fast |
| 6 | # Python protos, bind python_headers to a dummy target. |
| 7 | bind( |
| 8 | name = "python_headers", |
| 9 | actual = "//:dummy", |
| 10 | ) |
| 11 | |
Alpha Lam | a1a79cb | 2016-05-15 19:13:52 +0000 | [diff] [blame] | 12 | # Protobuf code generation for GRPC requires three external labels: |
| 13 | # //external:grpc-java_plugin |
| 14 | # //external:grpc-jar |
| 15 | # //external:guava |
| 16 | bind( |
| 17 | name = "grpc-java-plugin", |
| 18 | actual = "//third_party/grpc:grpc-java-plugin", |
| 19 | ) |
| 20 | |
| 21 | bind( |
| 22 | name = "grpc-jar", |
| 23 | actual = "//third_party/grpc:grpc-jar", |
| 24 | ) |
| 25 | |
| 26 | bind( |
| 27 | name = "guava", |
| 28 | actual = "//third_party:guava", |
| 29 | ) |
| 30 | |
Jakob Buchgraber | 6e12e65 | 2017-05-02 11:53:15 +0200 | [diff] [blame] | 31 | # Used by //third_party/protobuf:protobuf_python |
| 32 | bind( |
| 33 | name = "six", |
| 34 | actual = "//third_party/py/six", |
| 35 | ) |
| 36 | |
Googler | 5b90b16 | 2017-08-31 16:29:34 +0200 | [diff] [blame] | 37 | http_archive( |
| 38 | name = "bazel_j2objc", |
Laszlo Csomor | 0f3f788 | 2018-03-13 06:56:12 -0700 | [diff] [blame] | 39 | # Computed using "shasum -a 256 j2objc-2.0.3.zip" |
| 40 | sha256 = "a36bac432d0dbd8c98249e484b2b69dd5720afa4abb58711a3c3def1c0bfa21d", |
Googler | 5b90b16 | 2017-08-31 16:29:34 +0200 | [diff] [blame] | 41 | strip_prefix = "j2objc-2.0.3", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 42 | url = "https://github.com/google/j2objc/releases/download/2.0.3/j2objc-2.0.3.zip", |
Googler | 5b90b16 | 2017-08-31 16:29:34 +0200 | [diff] [blame] | 43 | ) |
| 44 | |
Damien Martin-Guillerez | 0baff0f | 2017-08-22 17:40:37 +0200 | [diff] [blame] | 45 | # For src/test/shell/bazel:test_srcs |
| 46 | load("//src/test/shell/bazel:list_source_repository.bzl", "list_source_repository") |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 47 | |
Damien Martin-Guillerez | 0baff0f | 2017-08-22 17:40:37 +0200 | [diff] [blame] | 48 | list_source_repository(name = "local_bazel_source_list") |
| 49 | |
Adam Michael | 9b7330f | 2017-03-23 18:40:51 +0000 | [diff] [blame] | 50 | # To run the Android integration tests in //src/test/shell/bazel/android:all or |
| 51 | # build the Android sample app in //examples/android/java/bazel:hello_world |
| 52 | # |
| 53 | # 1. Install an Android SDK and NDK from https://developer.android.com |
| 54 | # 2. Set the $ANDROID_HOME and $ANDROID_NDK_HOME environment variables |
| 55 | # 3. Uncomment the two lines below |
| 56 | # |
| 57 | # android_sdk_repository(name = "androidsdk") |
| 58 | # android_ndk_repository(name = "androidndk") |
Cal Peyser | 2152bc1 | 2016-04-22 17:08:59 +0000 | [diff] [blame] | 59 | |
Adam Michael | 8a136d8 | 2016-11-16 23:04:46 +0000 | [diff] [blame] | 60 | # In order to run //src/test/shell/bazel:maven_skylark_test, follow the |
| 61 | # instructions above for the Android integration tests and uncomment the |
| 62 | # following lines: |
| 63 | # load("//tools/build_defs/repo:maven_rules.bzl", "maven_dependency_plugin") |
| 64 | # maven_dependency_plugin() |
| 65 | |
Cal Peyser | 2152bc1 | 2016-04-22 17:08:59 +0000 | [diff] [blame] | 66 | # This allows rules written in skylark to locate apple build tools. |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 67 | bind( |
| 68 | name = "xcrunwrapper", |
| 69 | actual = "@bazel_tools//tools/objc:xcrunwrapper", |
| 70 | ) |
Carmi Grushko | bfaff29 | 2016-08-17 18:37:55 +0000 | [diff] [blame] | 71 | |
Jakob Buchgraber | 8ff0d0d | 2017-04-14 21:16:19 +0200 | [diff] [blame] | 72 | new_local_repository( |
Carmi Grushko | 0fd73d6 | 2017-02-17 06:49:40 +0000 | [diff] [blame] | 73 | name = "com_google_protobuf", |
hlopko | ead1002 | 2018-09-05 05:37:23 -0700 | [diff] [blame] | 74 | build_file = "./third_party/protobuf/3.6.1/BUILD", |
| 75 | path = "./third_party/protobuf/3.6.1/", |
Carmi Grushko | 0fd73d6 | 2017-02-17 06:49:40 +0000 | [diff] [blame] | 76 | ) |
| 77 | |
| 78 | new_local_repository( |
Jakob Buchgraber | 166f28c | 2017-05-30 16:41:18 +0200 | [diff] [blame] | 79 | name = "googleapis", |
Jakob Buchgraber | 166f28c | 2017-05-30 16:41:18 +0200 | [diff] [blame] | 80 | build_file = "./third_party/googleapis/BUILD", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 81 | path = "./third_party/googleapis/", |
Jakob Buchgraber | 166f28c | 2017-05-30 16:41:18 +0200 | [diff] [blame] | 82 | ) |
| 83 | |
Ola Rozenfeld | 930119a | 2018-08-10 11:04:44 -0700 | [diff] [blame] | 84 | new_local_repository( |
| 85 | name = "remoteapis", |
Ola Rozenfeld | 930119a | 2018-08-10 11:04:44 -0700 | [diff] [blame] | 86 | build_file = "./third_party/remoteapis/BUILD.bazel", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 87 | path = "./third_party/remoteapis/", |
Ola Rozenfeld | 930119a | 2018-08-10 11:04:44 -0700 | [diff] [blame] | 88 | ) |
| 89 | |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 90 | http_archive( |
| 91 | name = "desugar_jdk_libs", |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 92 | # Computed using "shasum -a 256 <zip>" |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 93 | sha256 = "43b8fcc56a180e178d498f375fbeb95e8b65b9bf6c2da91ae3ae0332521a1a12", |
| 94 | strip_prefix = "desugar_jdk_libs-fd937f4180c1b557805219af4482f1a27eb0ff2b", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 95 | url = "https://github.com/google/desugar_jdk_libs/archive/fd937f4180c1b557805219af4482f1a27eb0ff2b.zip", |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 96 | ) |
| 97 | |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 98 | load("//:distdir.bzl", "distdir_tar") |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 99 | |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 100 | distdir_tar( |
| 101 | name = "additional_distfiles", |
cparsons | 871cd6f | 2018-08-16 09:10:38 -0700 | [diff] [blame] | 102 | archives = [ |
| 103 | "fd937f4180c1b557805219af4482f1a27eb0ff2b.zip", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 104 | "7490380c6bbf9a5a060df78dc2222e7de6ffae5c.tar.gz", |
cparsons | 871cd6f | 2018-08-16 09:10:38 -0700 | [diff] [blame] | 105 | ], |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 106 | dirname = "derived/distdir", |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 107 | sha256 = { |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 108 | "fd937f4180c1b557805219af4482f1a27eb0ff2b.zip": "43b8fcc56a180e178d498f375fbeb95e8b65b9bf6c2da91ae3ae0332521a1a12", |
| 109 | "7490380c6bbf9a5a060df78dc2222e7de6ffae5c.tar.gz": "3528fc6012a78da6291c00854373ea43f7f8b6c4046320be5f0884f5b3385b14", |
| 110 | }, |
| 111 | urls = { |
| 112 | "fd937f4180c1b557805219af4482f1a27eb0ff2b.zip": ["https://github.com/google/desugar_jdk_libs/archive/fd937f4180c1b557805219af4482f1a27eb0ff2b.zip"], |
| 113 | "7490380c6bbf9a5a060df78dc2222e7de6ffae5c.tar.gz": ["https://github.com/bazelbuild/bazel-skylib/archive/7490380c6bbf9a5a060df78dc2222e7de6ffae5c.tar.gz"], |
| 114 | }, |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 115 | ) |
| 116 | |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 117 | # OpenJDK distributions used to create a version of Bazel bundled with the OpenJDK. |
| 118 | http_file( |
| 119 | name = "openjdk_linux", |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 120 | sha256 = "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 121 | urls = [ |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 122 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 123 | ], |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 124 | downloaded_file_path="zulu-linux.tar.gz", |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 125 | ) |
| 126 | |
philwo | 54c2572 | 2018-10-02 05:41:00 -0700 | [diff] [blame] | 127 | # Used by CI to test Bazel on platforms without an installed system JDK. |
| 128 | # TODO(twerth): Migrate to @remotejdk when https://github.com/bazelbuild/bazel/pull/6216 is merged. |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 129 | http_archive( |
philwo | 54c2572 | 2018-10-02 05:41:00 -0700 | [diff] [blame] | 130 | name = "openjdk_linux_archive", |
| 131 | sha256 = "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", |
| 132 | urls = [ |
| 133 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", |
| 134 | ], |
| 135 | strip_prefix = "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules", |
| 136 | build_file_content = "java_runtime(name = 'runtime', srcs = glob(['**']), visibility = ['//visibility:public'])", |
| 137 | ) |
| 138 | |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 139 | http_file( |
| 140 | name = "openjdk_macos", |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 141 | sha256 = "404e7058ff91f956612f47705efbee8e175a38b505fb1b52d8c1ea98718683de", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 142 | urls = [ |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 143 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 144 | ], |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 145 | downloaded_file_path="zulu-macos.tar.gz", |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 146 | ) |
| 147 | |
| 148 | http_file( |
| 149 | name = "openjdk_win", |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 150 | sha256 = "e738829017f107e7a7cd5069db979398ec3c3f03ef56122f89ba38e7374f63ed", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 151 | urls = [ |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 152 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 153 | ], |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 154 | downloaded_file_path="zulu-win.zip", |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 155 | ) |
Googler | 5f36bf8 | 2017-07-12 20:43:08 +0200 | [diff] [blame] | 156 | |
Arielle Albon | fa7e49f | 2018-07-31 00:57:54 -0700 | [diff] [blame] | 157 | # The source-code for this OpenJDK can be found at: |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 158 | # https://openjdk.linaro.org/releases/jdk9-src-1708.tar.xz |
Arielle Albon | fa7e49f | 2018-07-31 00:57:54 -0700 | [diff] [blame] | 159 | http_file( |
| 160 | name = "openjdk_linux_aarch64", |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 161 | sha256 = "72e7843902b0395e2d30e1e9ad2a5f05f36a4bc62529828bcbc698d54aec6022", |
Arielle Albon | fa7e49f | 2018-07-31 00:57:54 -0700 | [diff] [blame] | 162 | urls = [ |
| 163 | # When you update this, also update the link to the source-code above. |
philwo | 6ebc71f | 2018-10-23 11:57:09 -0700 | [diff] [blame] | 164 | "https://mirror.bazel.build/openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz", |
lberki | 7eb9ea1 | 2018-09-07 04:01:48 -0700 | [diff] [blame] | 165 | "http://openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz", |
Arielle Albon | fa7e49f | 2018-07-31 00:57:54 -0700 | [diff] [blame] | 166 | ], |
| 167 | ) |
| 168 | |
Googler | 5f36bf8 | 2017-07-12 20:43:08 +0200 | [diff] [blame] | 169 | http_archive( |
philwo | b495eaf | 2018-08-28 04:00:46 -0700 | [diff] [blame] | 170 | name = "bazel_toolchains", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 171 | sha256 = "cefb6ccf86ca592baaa029bcef04148593c0efe8f734542f10293ea58f170715", |
| 172 | strip_prefix = "bazel-toolchains-cdea5b8675914d0a354d89f108de5d28e54e0edc", |
philwo | b495eaf | 2018-08-28 04:00:46 -0700 | [diff] [blame] | 173 | urls = [ |
| 174 | "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/cdea5b8675914d0a354d89f108de5d28e54e0edc.tar.gz", |
| 175 | "https://github.com/bazelbuild/bazel-toolchains/archive/cdea5b8675914d0a354d89f108de5d28e54e0edc.tar.gz", |
| 176 | ], |
Googler | 5f36bf8 | 2017-07-12 20:43:08 +0200 | [diff] [blame] | 177 | ) |
ccalvarin | 1cbe62a | 2017-08-14 21:09:07 +0200 | [diff] [blame] | 178 | |
ccalvarin | 7383976 | 2018-03-23 15:35:00 -0700 | [diff] [blame] | 179 | # We're pinning to a commit because this project does not have a recent release. |
| 180 | # Nothing special about this commit, though. |
ccalvarin | 8e9f4a8 | 2018-03-23 08:19:37 -0700 | [diff] [blame] | 181 | http_archive( |
| 182 | name = "com_google_googletest", |
Loo Rong Jie | e94aa22 | 2018-10-15 01:27:08 -0700 | [diff] [blame] | 183 | sha256 = "0fb00ff413f6b9b80ccee44a374ca7a18af7315aea72a43c62f2acd1ca74e9b5", |
| 184 | strip_prefix = "googletest-f13bbe2992d188e834339abe6f715b2b2f840a77", |
ccalvarin | 8e9f4a8 | 2018-03-23 08:19:37 -0700 | [diff] [blame] | 185 | urls = [ |
Loo Rong Jie | e94aa22 | 2018-10-15 01:27:08 -0700 | [diff] [blame] | 186 | "https://github.com/google/googletest/archive/f13bbe2992d188e834339abe6f715b2b2f840a77.tar.gz", |
ccalvarin | 8e9f4a8 | 2018-03-23 08:19:37 -0700 | [diff] [blame] | 187 | ], |
ccalvarin | 8e9f4a8 | 2018-03-23 08:19:37 -0700 | [diff] [blame] | 188 | ) |
| 189 | |
Xin Gao | c439ae1 | 2017-11-07 19:05:31 +0100 | [diff] [blame] | 190 | # For src/test/shell/bazel:bazel_sandboxing_test |
| 191 | http_file( |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 192 | name = "mount_path_toolchain", |
| 193 | sha256 = "dd8088d3543a86fd91a9ccde6e40102aff6eaf3d048aa73cc18eff05cc2053d5", |
Klaus Aehlig | a55714c | 2018-10-23 02:16:02 -0700 | [diff] [blame] | 194 | urls = ["https://asci-toolchain.appspot.com.storage.googleapis.com/toolchain-testing/mount_path_toolchain.tar.gz"], |
| 195 | downloaded_file_path="mount_path_toolchain.tar.gz", |
Xin Gao | c439ae1 | 2017-11-07 19:05:31 +0100 | [diff] [blame] | 196 | ) |
cparsons | 871cd6f | 2018-08-16 09:10:38 -0700 | [diff] [blame] | 197 | |
| 198 | http_archive( |
| 199 | name = "bazel_skylib", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 200 | sha256 = "3528fc6012a78da6291c00854373ea43f7f8b6c4046320be5f0884f5b3385b14", |
| 201 | strip_prefix = "bazel-skylib-7490380c6bbf9a5a060df78dc2222e7de6ffae5c", |
cparsons | 871cd6f | 2018-08-16 09:10:38 -0700 | [diff] [blame] | 202 | urls = [ |
| 203 | "https://github.com/bazelbuild/bazel-skylib/archive/7490380c6bbf9a5a060df78dc2222e7de6ffae5c.tar.gz", |
| 204 | ], |
cparsons | 871cd6f | 2018-08-16 09:10:38 -0700 | [diff] [blame] | 205 | ) |
cparsons | a5be661 | 2018-08-27 13:21:21 -0700 | [diff] [blame] | 206 | |
| 207 | http_archive( |
| 208 | name = "skydoc", |
cushon | b664623 | 2018-09-07 01:44:10 -0700 | [diff] [blame] | 209 | sha256 = "cfbfcc107f5c9853dc5b2b81f1fe90fc326bd1c61f76c9aac2b4201dff75b91d", |
| 210 | strip_prefix = "skydoc-d34c44c3f4102eb94beaf2636c6cf532f0ec1ee8", |
cparsons | a5be661 | 2018-08-27 13:21:21 -0700 | [diff] [blame] | 211 | urls = [ |
| 212 | "https://github.com/bazelbuild/skydoc/archive/d34c44c3f4102eb94beaf2636c6cf532f0ec1ee8.tar.gz", |
| 213 | ], |
cparsons | a5be661 | 2018-08-27 13:21:21 -0700 | [diff] [blame] | 214 | ) |
Klaus Aehlig | acafe5a | 2018-10-24 03:16:42 -0700 | [diff] [blame] | 215 | |
| 216 | # For testing, have an distdir_tar with all the archives implicit in every |
| 217 | # WORKSPACE, to that they don't have to be refetched for every test |
| 218 | # calling `bazel sync`. |
| 219 | distdir_tar( |
| 220 | name = "jdk_WORKSPACE_files", |
| 221 | archives = [ |
| 222 | "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", |
| 223 | "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz", |
| 224 | "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip", |
| 225 | "jdk9-server-release-1708.tar.xz", |
| 226 | "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz", |
| 227 | "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz", |
| 228 | "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip", |
| 229 | "jdk10-server-release-1804.tar.xz", |
| 230 | ], |
| 231 | dirname = "jdk_WORKSPACE/distdir", |
| 232 | sha256 = { |
| 233 | "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz" : "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", |
| 234 | "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz" : "404e7058ff91f956612f47705efbee8e175a38b505fb1b52d8c1ea98718683de", |
| 235 | "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip" : "e738829017f107e7a7cd5069db979398ec3c3f03ef56122f89ba38e7374f63ed", |
| 236 | "jdk9-server-release-1708.tar.xz" : "72e7843902b0395e2d30e1e9ad2a5f05f36a4bc62529828bcbc698d54aec6022", |
| 237 | "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz" : "57fad3602e74c79587901d6966d3b54ef32cb811829a2552163185d5064fe9b5", |
| 238 | "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz" : "e669c9a897413d855b550b4e39d79614392e6fb96f494e8ef99a34297d9d85d3", |
| 239 | "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip" : "c39e7700a8d41794d60985df5a20352435196e78ecbc6a2b30df7be8637bffd5", |
| 240 | "jdk10-server-release-1804.tar.xz" : "b7098b7aaf6ee1ffd4a2d0371a0be26c5a5c87f6aebbe46fe9a92c90583a84be", |
| 241 | }, |
| 242 | urls = { |
| 243 | "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz" : ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz"], |
| 244 | "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz" : ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz"], |
| 245 | "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip" : ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip"], |
| 246 | "jdk9-server-release-1708.tar.xz" : ["https://mirror.bazel.build/openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz"], |
| 247 | "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz" : ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz"], |
| 248 | "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz" : ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz"], |
| 249 | "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip" : ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip" ], |
| 250 | "jdk10-server-release-1804.tar.xz" : ["https://mirror.bazel.build/openjdk.linaro.org/releases/jdk10-server-release-1804.tar.xz"], |
| 251 | }, |
| 252 | ) |