├── .bcr ├── config.yml ├── source.template.json ├── presubmit.yml └── metadata.template.json ├── .bazelci └── presubmit.yml ├── BUILD.bazel ├── distro ├── README.md └── BUILD.bazel ├── MODULE.bazel ├── platform_data ├── BUILD.bazel ├── test │ ├── BUILD │ └── analysis_tests.bzl └── defs.bzl ├── CONTRIBUTING.md ├── README.md ├── LICENSE └── MODULE.bazel.lock /.bcr/config.yml: -------------------------------------------------------------------------------- 1 | fixedReleaser: 2 | login: aranguyen 3 | email: aranguyen@google.com 4 | -------------------------------------------------------------------------------- /.bazelci/presubmit.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | tasks: 4 | ubuntu2004: 5 | build_targets: 6 | - "//..." 7 | test_targets: 8 | - "//platform_data/test/..." 9 | -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrity": "", 3 | "strip_prefix": "", 4 | "url": "https://github.com/bazelbuild/rules_platform/releases/download/0.1.0/rules_platform-0.1.0.tar.gz" 5 | } 6 | -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- 1 | bcr_test_module: 2 | module_path: "e2e/bzlmod" 3 | matrix: 4 | platform: ["debian10", "macos", "ubuntu2004", "windows"] 5 | bazel: 6 | - 7.x 7 | tasks: 8 | run_tests: 9 | name: "Run test module" 10 | platform: ${{ platform }} 11 | test_targets: 12 | - "//..." 13 | -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) 2 | 3 | exports_files([ 4 | "LICENSE", 5 | "WORKSPACE", 6 | ]) 7 | 8 | filegroup( 9 | name = "distribution", 10 | srcs = [ 11 | "BUILD.bazel", 12 | "LICENSE", 13 | "MODULE.bazel", 14 | "//platform_data:srcs", 15 | ], 16 | visibility = ["//visibility:public"], 17 | ) 18 | -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://github.com/bazelbuild/rules_platform", 3 | "maintainers": [ 4 | { 5 | "name": "Ara Nguyen", 6 | "email": "aranguyen@google.com", 7 | "github": "aranguyen" 8 | } 9 | ], 10 | "repository": [ 11 | "github:bazelbuild/rules_platform" 12 | ], 13 | "versions": [], 14 | "yanked_versions": {} 15 | } 16 | -------------------------------------------------------------------------------- /distro/README.md: -------------------------------------------------------------------------------- 1 | # Releasing rules_platform 2 | 3 | 1. Update version in distro/BUILD.bazel, 4 | 2. Build the release running `bazel build //distro:rules_platform-{version}` 5 | 3. Prepare release notes running `bazel build //distro:relnotes` 6 | 4. Create a new release on GitHub 7 | 5. Copy/paste the produced `relnotes.txt` into the notes. Adjust as needed. 8 | 6. Upload the produced tar.gz file as an artifact. 9 | -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- 1 | """Bazel build and test dependencies.""" 2 | 3 | # NOTE: When editing this file, also update the lockfile. 4 | # bazel mod deps --lockfile_mode=update 5 | 6 | module( 7 | name = "rules_platform", 8 | version = "0.1.0", 9 | ) 10 | 11 | bazel_dep(name = "bazel_skylib", version = "1.5.0") 12 | 13 | # Dev dependencies 14 | bazel_dep(name = "rules_pkg", version = "0.10.1", dev_dependency = True) 15 | -------------------------------------------------------------------------------- /distro/BUILD.bazel: -------------------------------------------------------------------------------- 1 | load("@rules_pkg//pkg:tar.bzl", "pkg_tar") 2 | load("@rules_pkg//pkg/releasing:defs.bzl", "print_rel_notes") 3 | 4 | package( 5 | default_visibility = ["//visibility:private"], 6 | ) 7 | 8 | # Build the artifact to put on the github release page. 9 | pkg_tar( 10 | name = "rules_platform-0.1.0", # update the version number here per release 11 | extension = "tar.gz", 12 | srcs = ["//:distribution"], 13 | # Make it owned by root so it does not have the uid of the CI robot. 14 | owner = "0.0", 15 | package_dir = ".", 16 | strip_prefix = ".", 17 | ) 18 | 19 | print_rel_notes( 20 | name = "relnotes", 21 | outs = ["relnotes.txt"], 22 | repo = "rules_platform", 23 | version = "0.1.0", 24 | ) 25 | -------------------------------------------------------------------------------- /platform_data/BUILD.bazel: -------------------------------------------------------------------------------- 1 | # Copyright 2024 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | exports_files([ 16 | "defs.bzl", 17 | ]) 18 | 19 | filegroup( 20 | name = "srcs", 21 | srcs = glob(["**"]), 22 | visibility = ["//:__pkg__"], 23 | ) 24 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to contribute 2 | 3 | We'd love to accept your patches and contributions to this project. 4 | 5 | ## Before you begin 6 | 7 | ### Sign our Contributor License Agreement 8 | 9 | Contributions to this project must be accompanied by a 10 | [Contributor License Agreement](https://cla.developers.google.com/about) (CLA). 11 | You (or your employer) retain the copyright to your contribution; this simply 12 | gives us permission to use and redistribute your contributions as part of the 13 | project. 14 | 15 | If you or your current employer have already signed the Google CLA (even if it 16 | was for a different project), you probably don't need to do it again. 17 | 18 | Visit to see your current agreements or to 19 | sign a new one. 20 | 21 | ### Review our community guidelines 22 | 23 | This project follows 24 | [Google's Open Source Community Guidelines](https://opensource.google/conduct/). 25 | 26 | ## Contribution process 27 | 28 | ### Code reviews 29 | 30 | All submissions, including submissions by project members, require review. We 31 | use GitHub pull requests for this purpose. Consult 32 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 33 | information on using pull requests. 34 | -------------------------------------------------------------------------------- /platform_data/test/BUILD: -------------------------------------------------------------------------------- 1 | # Copyright 2024 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | load("//platform_data:defs.bzl", "platform_data") 16 | load(":analysis_tests.bzl", "platform_data_test", "write_target_platform_rule_test") 17 | 18 | platform_data_test( 19 | name = "platform_data_test", 20 | expected_platform = "@@//platform_data/test:test_platform", 21 | target_under_test = ":foo_embedded", 22 | ) 23 | 24 | write_target_platform_rule_test( 25 | name = "foo", 26 | ) 27 | 28 | platform_data( 29 | name = "foo_embedded", 30 | testonly = True, 31 | platform = ":test_platform", 32 | target = ":foo", 33 | ) 34 | 35 | platform( 36 | name = "test_platform", 37 | constraint_values = [ 38 | ], 39 | ) 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rules_platform 2 | This repository contains all platforms-related rules or transitions that rules author/Bazel users could use. The README should be kept updated as new rules/transition get added to the repo. 3 | 4 | For questions or concern, please email bazel-discuss@googlegroups.com. 5 | 6 | # Motivation 7 | Many rule authors and users want to create targets that can easily change the target platform: 8 | rule authors may want to add convenient rule attributes for this, whereas users frequently need to bundle together executables for multiple platforms in a single high-level artifact. 9 | This repo houses new rules/transition which rules authors and Bazel users can import and use. Because these are Starlark implementations, with no Bazel changes, rules authos can feel free to extend or ignore these as needed. 10 | 11 | # Rules 12 | ## Use case: Depend on a target built for a different platform 13 | The `platform_data` rule can be used to change the target platform of a target, and then depend on that elsewhere in the build tree. 14 | ``` 15 | cc_binary(name = "foo") 16 | 17 | platform_data( 18 | name = "foo_embedded", 19 | target = ":foo", 20 | platform = "//my/new:platform", 21 | ) 22 | 23 | py_binary( 24 | name = "flasher", 25 | srcs = ..., 26 | data = [ 27 | ":foo_embedded", 28 | ], 29 | ) 30 | ``` 31 | Regardless of what platform the top-level `:flasher` binary is built for, the `:foo_embedded` target will be built for `//my/new:platform`. 32 | -------------------------------------------------------------------------------- /platform_data/test/analysis_tests.bzl: -------------------------------------------------------------------------------- 1 | # Copyright 2024 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | """ 16 | platform_data_test is an analysistest rule that takes a target_under_test (e.g platform_data target) and a value for expected_platform. The test rule implementation make asserts against the transitive target platforms to make sure that --platform is set properly by the transition. 17 | """ 18 | 19 | load("@bazel_skylib//lib:unittest.bzl", "analysistest", "asserts") 20 | 21 | TransitivePlatformInfo = provider( 22 | "Contains information about transitive target platform info", 23 | fields = ["platforms"], 24 | ) 25 | 26 | TestPlatformInfo = provider( 27 | "Contains information about target platform", 28 | fields = ["platforms"], 29 | ) 30 | 31 | def _transitive_aspect_impl(target, aspect_ctx): 32 | transitive_target_platforms = [] 33 | for dep in getattr(aspect_ctx.rule.attr, "target", []): 34 | if TestPlatformInfo in dep: 35 | transitive_target_platforms.append(dep[TestPlatformInfo].platforms) 36 | 37 | return [TransitivePlatformInfo(platforms = transitive_target_platforms)] 38 | 39 | _transitive_aspect = aspect( 40 | attr_aspects = ["target"], 41 | implementation = _transitive_aspect_impl, 42 | ) 43 | 44 | def _platform_data_test_impl(ctx): 45 | env = analysistest.begin(ctx) 46 | target_under_test = analysistest.target_under_test(env) 47 | transitive_target_platforms = target_under_test[TransitivePlatformInfo] 48 | 49 | asserts.equals( 50 | env, 51 | ctx.attr.expected_platform, 52 | str(transitive_target_platforms.platforms[0]), 53 | "Target platform does not match the expected value", 54 | ) 55 | return analysistest.end(env) 56 | 57 | platform_data_test = analysistest.make( 58 | _platform_data_test_impl, 59 | attrs = { 60 | "expected_platform": attr.string(), 61 | }, 62 | extra_target_under_test_aspects = [_transitive_aspect], 63 | ) 64 | 65 | def print_target_platform(target_platform): 66 | return """ 67 | echo Target platform for target under test is {target_platform} 68 | """ 69 | 70 | def _write_target_platform_impl(ctx): 71 | script = print_target_platform(str(ctx.fragments.platform.platform)) 72 | executable = ctx.actions.declare_file(ctx.label.name) 73 | 74 | ctx.actions.write( 75 | output = executable, 76 | content = script, 77 | is_executable = True, 78 | ) 79 | return [ 80 | DefaultInfo(executable = executable), 81 | TestPlatformInfo(platforms = ctx.fragments.platform.platform), 82 | ] 83 | 84 | write_target_platform_rule_test = rule( 85 | implementation = _write_target_platform_impl, 86 | test = True, 87 | ) 88 | -------------------------------------------------------------------------------- /platform_data/defs.bzl: -------------------------------------------------------------------------------- 1 | # Copyright 2024 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | """ 16 | The platform_data rule can be used to change the target platform of a target, 17 | and then depend on that elsewhere in the build tree. For example: 18 | load("@rules_platform//platform_data:defs.bzl", "platform_data") 19 | 20 | cc_binary(name = "foo") 21 | 22 | platform_data( 23 | name = "foo_embedded", 24 | target = ":foo", 25 | platform = "//my/new:platform", 26 | ) 27 | 28 | py_binary( 29 | name = "flasher", 30 | srcs = ..., 31 | data = [ 32 | ":foo_embedded", 33 | ], 34 | ) 35 | 36 | Regardless of what platform the top-level :flasher binary is built for, 37 | the :foo_embedded target will be built for //my/new:platform. 38 | 39 | Note that if you depend on :foo_embedded it's not exactly the same as depending on :foo, since it won't forward all the same providers. In the future, we can extend this to add some common providers as needed.""" 40 | 41 | def _target_platform_transition_impl(settings, attr): 42 | return { 43 | "//command_line_option:platforms": str(attr.platform), 44 | } 45 | 46 | _target_platform_transition = transition( 47 | implementation = _target_platform_transition_impl, 48 | inputs = [], 49 | outputs = [ 50 | "//command_line_option:platforms", 51 | ], 52 | ) 53 | 54 | def _platform_data_impl(ctx): 55 | target = ctx.attr.target 56 | 57 | default_info = target[0][DefaultInfo] 58 | files = default_info.files 59 | original_executable = default_info.files_to_run.executable 60 | runfiles = default_info.default_runfiles 61 | 62 | new_executable = ctx.actions.declare_file(ctx.attr.name) 63 | 64 | ctx.actions.symlink( 65 | output = new_executable, 66 | target_file = original_executable, 67 | is_executable = True, 68 | ) 69 | 70 | files = depset(direct = [new_executable], transitive = [files]) 71 | runfiles = runfiles.merge(ctx.runfiles([new_executable])) 72 | 73 | return [ 74 | DefaultInfo( 75 | files = files, 76 | runfiles = runfiles, 77 | executable = new_executable, 78 | ), 79 | ] 80 | 81 | platform_data = rule( 82 | implementation = _platform_data_impl, 83 | attrs = { 84 | "target": attr.label( 85 | allow_files = True, 86 | executable = True, 87 | mandatory = True, 88 | cfg = _target_platform_transition, 89 | ), 90 | "platform": attr.label( 91 | mandatory = True, 92 | ), 93 | "_allowlist_function_transition": attr.label( 94 | default = "@bazel_tools//tools/allowlists/function_transition_allowlist", 95 | ), 96 | }, 97 | executable = True, 98 | ) 99 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- 1 | { 2 | "lockFileVersion": 6, 3 | "moduleFileHash": "1fe546d3ced195ad1632ed3621446d3c0bb4757e5becc44b12303a4ac23d6058", 4 | "flags": { 5 | "cmdRegistries": [ 6 | "https://bcr.bazel.build/" 7 | ], 8 | "cmdModuleOverrides": {}, 9 | "allowedYankedVersions": [], 10 | "envVarAllowedYankedVersions": "", 11 | "ignoreDevDependency": false, 12 | "directDependenciesMode": "WARNING", 13 | "compatibilityMode": "ERROR" 14 | }, 15 | "localOverrideHashes": { 16 | "bazel_tools": "1ae69322ac3823527337acf02016e8ee95813d8d356f47060255b8956fa642f0" 17 | }, 18 | "moduleDepGraph": { 19 | "": { 20 | "name": "rules_platform", 21 | "version": "0.1.0", 22 | "key": "", 23 | "repoName": "rules_platform", 24 | "executionPlatformsToRegister": [], 25 | "toolchainsToRegister": [], 26 | "extensionUsages": [], 27 | "deps": { 28 | "bazel_skylib": "bazel_skylib@1.5.0", 29 | "rules_pkg": "rules_pkg@0.10.1", 30 | "bazel_tools": "bazel_tools@_", 31 | "local_config_platform": "local_config_platform@_" 32 | } 33 | }, 34 | "bazel_skylib@1.5.0": { 35 | "name": "bazel_skylib", 36 | "version": "1.5.0", 37 | "key": "bazel_skylib@1.5.0", 38 | "repoName": "bazel_skylib", 39 | "executionPlatformsToRegister": [], 40 | "toolchainsToRegister": [ 41 | "//toolchains/unittest:cmd_toolchain", 42 | "//toolchains/unittest:bash_toolchain" 43 | ], 44 | "extensionUsages": [], 45 | "deps": { 46 | "platforms": "platforms@0.0.7", 47 | "bazel_tools": "bazel_tools@_", 48 | "local_config_platform": "local_config_platform@_" 49 | }, 50 | "repoSpec": { 51 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 52 | "ruleClassName": "http_archive", 53 | "attributes": { 54 | "urls": [ 55 | "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" 56 | ], 57 | "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", 58 | "strip_prefix": "", 59 | "remote_patches": {}, 60 | "remote_patch_strip": 0 61 | } 62 | } 63 | }, 64 | "rules_pkg@0.10.1": { 65 | "name": "rules_pkg", 66 | "version": "0.10.1", 67 | "key": "rules_pkg@0.10.1", 68 | "repoName": "rules_pkg", 69 | "executionPlatformsToRegister": [], 70 | "toolchainsToRegister": [], 71 | "extensionUsages": [], 72 | "deps": { 73 | "rules_license": "rules_license@0.0.7", 74 | "rules_python": "rules_python@0.24.0", 75 | "bazel_skylib": "bazel_skylib@1.5.0", 76 | "bazel_tools": "bazel_tools@_", 77 | "local_config_platform": "local_config_platform@_" 78 | }, 79 | "repoSpec": { 80 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 81 | "ruleClassName": "http_archive", 82 | "attributes": { 83 | "urls": [ 84 | "https://github.com/bazelbuild/rules_pkg/releases/download/0.10.1/rules_pkg-0.10.1.tar.gz" 85 | ], 86 | "integrity": "sha256-0lCSSi7MUXaAj8TCXVz16eeeY0bXnVqxxJPiieci0dA=", 87 | "strip_prefix": "", 88 | "remote_patches": {}, 89 | "remote_patch_strip": 0 90 | } 91 | } 92 | }, 93 | "bazel_tools@_": { 94 | "name": "bazel_tools", 95 | "version": "", 96 | "key": "bazel_tools@_", 97 | "repoName": "bazel_tools", 98 | "executionPlatformsToRegister": [], 99 | "toolchainsToRegister": [ 100 | "@local_config_cc_toolchains//:all", 101 | "@local_config_sh//:local_sh_toolchain" 102 | ], 103 | "extensionUsages": [ 104 | { 105 | "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", 106 | "extensionName": "cc_configure_extension", 107 | "usingModule": "bazel_tools@_", 108 | "location": { 109 | "file": "@@bazel_tools//:MODULE.bazel", 110 | "line": 18, 111 | "column": 29 112 | }, 113 | "imports": { 114 | "local_config_cc": "local_config_cc", 115 | "local_config_cc_toolchains": "local_config_cc_toolchains" 116 | }, 117 | "devImports": [], 118 | "tags": [], 119 | "hasDevUseExtension": false, 120 | "hasNonDevUseExtension": true 121 | }, 122 | { 123 | "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl", 124 | "extensionName": "xcode_configure_extension", 125 | "usingModule": "bazel_tools@_", 126 | "location": { 127 | "file": "@@bazel_tools//:MODULE.bazel", 128 | "line": 22, 129 | "column": 32 130 | }, 131 | "imports": { 132 | "local_config_xcode": "local_config_xcode" 133 | }, 134 | "devImports": [], 135 | "tags": [], 136 | "hasDevUseExtension": false, 137 | "hasNonDevUseExtension": true 138 | }, 139 | { 140 | "extensionBzlFile": "@rules_java//java:extensions.bzl", 141 | "extensionName": "toolchains", 142 | "usingModule": "bazel_tools@_", 143 | "location": { 144 | "file": "@@bazel_tools//:MODULE.bazel", 145 | "line": 25, 146 | "column": 32 147 | }, 148 | "imports": { 149 | "local_jdk": "local_jdk", 150 | "remote_java_tools": "remote_java_tools", 151 | "remote_java_tools_linux": "remote_java_tools_linux", 152 | "remote_java_tools_windows": "remote_java_tools_windows", 153 | "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", 154 | "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64" 155 | }, 156 | "devImports": [], 157 | "tags": [], 158 | "hasDevUseExtension": false, 159 | "hasNonDevUseExtension": true 160 | }, 161 | { 162 | "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl", 163 | "extensionName": "sh_configure_extension", 164 | "usingModule": "bazel_tools@_", 165 | "location": { 166 | "file": "@@bazel_tools//:MODULE.bazel", 167 | "line": 36, 168 | "column": 39 169 | }, 170 | "imports": { 171 | "local_config_sh": "local_config_sh" 172 | }, 173 | "devImports": [], 174 | "tags": [], 175 | "hasDevUseExtension": false, 176 | "hasNonDevUseExtension": true 177 | }, 178 | { 179 | "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl", 180 | "extensionName": "remote_coverage_tools_extension", 181 | "usingModule": "bazel_tools@_", 182 | "location": { 183 | "file": "@@bazel_tools//:MODULE.bazel", 184 | "line": 40, 185 | "column": 48 186 | }, 187 | "imports": { 188 | "remote_coverage_tools": "remote_coverage_tools" 189 | }, 190 | "devImports": [], 191 | "tags": [], 192 | "hasDevUseExtension": false, 193 | "hasNonDevUseExtension": true 194 | }, 195 | { 196 | "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl", 197 | "extensionName": "remote_android_tools_extensions", 198 | "usingModule": "bazel_tools@_", 199 | "location": { 200 | "file": "@@bazel_tools//:MODULE.bazel", 201 | "line": 43, 202 | "column": 42 203 | }, 204 | "imports": { 205 | "android_gmaven_r8": "android_gmaven_r8", 206 | "android_tools": "android_tools" 207 | }, 208 | "devImports": [], 209 | "tags": [], 210 | "hasDevUseExtension": false, 211 | "hasNonDevUseExtension": true 212 | }, 213 | { 214 | "extensionBzlFile": "@buildozer//:buildozer_binary.bzl", 215 | "extensionName": "buildozer_binary", 216 | "usingModule": "bazel_tools@_", 217 | "location": { 218 | "file": "@@bazel_tools//:MODULE.bazel", 219 | "line": 47, 220 | "column": 33 221 | }, 222 | "imports": { 223 | "buildozer_binary": "buildozer_binary" 224 | }, 225 | "devImports": [], 226 | "tags": [], 227 | "hasDevUseExtension": false, 228 | "hasNonDevUseExtension": true 229 | } 230 | ], 231 | "deps": { 232 | "rules_cc": "rules_cc@0.0.9", 233 | "rules_java": "rules_java@7.4.0", 234 | "rules_license": "rules_license@0.0.7", 235 | "rules_proto": "rules_proto@5.3.0-21.7", 236 | "rules_python": "rules_python@0.24.0", 237 | "buildozer": "buildozer@6.4.0.2", 238 | "platforms": "platforms@0.0.7", 239 | "com_google_protobuf": "protobuf@21.7", 240 | "zlib": "zlib@1.3", 241 | "build_bazel_apple_support": "apple_support@1.5.0", 242 | "local_config_platform": "local_config_platform@_" 243 | } 244 | }, 245 | "local_config_platform@_": { 246 | "name": "local_config_platform", 247 | "version": "", 248 | "key": "local_config_platform@_", 249 | "repoName": "local_config_platform", 250 | "executionPlatformsToRegister": [], 251 | "toolchainsToRegister": [], 252 | "extensionUsages": [], 253 | "deps": { 254 | "platforms": "platforms@0.0.7", 255 | "bazel_tools": "bazel_tools@_" 256 | } 257 | }, 258 | "platforms@0.0.7": { 259 | "name": "platforms", 260 | "version": "0.0.7", 261 | "key": "platforms@0.0.7", 262 | "repoName": "platforms", 263 | "executionPlatformsToRegister": [], 264 | "toolchainsToRegister": [], 265 | "extensionUsages": [], 266 | "deps": { 267 | "rules_license": "rules_license@0.0.7", 268 | "bazel_tools": "bazel_tools@_", 269 | "local_config_platform": "local_config_platform@_" 270 | }, 271 | "repoSpec": { 272 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 273 | "ruleClassName": "http_archive", 274 | "attributes": { 275 | "urls": [ 276 | "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" 277 | ], 278 | "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", 279 | "strip_prefix": "", 280 | "remote_patches": {}, 281 | "remote_patch_strip": 0 282 | } 283 | } 284 | }, 285 | "rules_license@0.0.7": { 286 | "name": "rules_license", 287 | "version": "0.0.7", 288 | "key": "rules_license@0.0.7", 289 | "repoName": "rules_license", 290 | "executionPlatformsToRegister": [], 291 | "toolchainsToRegister": [], 292 | "extensionUsages": [], 293 | "deps": { 294 | "bazel_tools": "bazel_tools@_", 295 | "local_config_platform": "local_config_platform@_" 296 | }, 297 | "repoSpec": { 298 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 299 | "ruleClassName": "http_archive", 300 | "attributes": { 301 | "urls": [ 302 | "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz" 303 | ], 304 | "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=", 305 | "strip_prefix": "", 306 | "remote_patches": {}, 307 | "remote_patch_strip": 0 308 | } 309 | } 310 | }, 311 | "rules_python@0.24.0": { 312 | "name": "rules_python", 313 | "version": "0.24.0", 314 | "key": "rules_python@0.24.0", 315 | "repoName": "rules_python", 316 | "executionPlatformsToRegister": [], 317 | "toolchainsToRegister": [ 318 | "@pythons_hub//:all" 319 | ], 320 | "extensionUsages": [ 321 | { 322 | "extensionBzlFile": "@rules_python//python/extensions/private:internal_deps.bzl", 323 | "extensionName": "internal_deps", 324 | "usingModule": "rules_python@0.24.0", 325 | "location": { 326 | "file": "https://bcr.bazel.build/modules/rules_python/0.24.0/MODULE.bazel", 327 | "line": 14, 328 | "column": 30 329 | }, 330 | "imports": { 331 | "pypi__build": "pypi__build", 332 | "pypi__click": "pypi__click", 333 | "pypi__colorama": "pypi__colorama", 334 | "pypi__importlib_metadata": "pypi__importlib_metadata", 335 | "pypi__installer": "pypi__installer", 336 | "pypi__more_itertools": "pypi__more_itertools", 337 | "pypi__packaging": "pypi__packaging", 338 | "pypi__pep517": "pypi__pep517", 339 | "pypi__pip": "pypi__pip", 340 | "pypi__pip_tools": "pypi__pip_tools", 341 | "pypi__setuptools": "pypi__setuptools", 342 | "pypi__tomli": "pypi__tomli", 343 | "pypi__wheel": "pypi__wheel", 344 | "pypi__zipp": "pypi__zipp" 345 | }, 346 | "devImports": [], 347 | "tags": [ 348 | { 349 | "tagName": "install", 350 | "attributeValues": {}, 351 | "devDependency": false, 352 | "location": { 353 | "file": "https://bcr.bazel.build/modules/rules_python/0.24.0/MODULE.bazel", 354 | "line": 15, 355 | "column": 22 356 | } 357 | } 358 | ], 359 | "hasDevUseExtension": false, 360 | "hasNonDevUseExtension": true 361 | }, 362 | { 363 | "extensionBzlFile": "@rules_python//python/extensions:python.bzl", 364 | "extensionName": "python", 365 | "usingModule": "rules_python@0.24.0", 366 | "location": { 367 | "file": "https://bcr.bazel.build/modules/rules_python/0.24.0/MODULE.bazel", 368 | "line": 36, 369 | "column": 23 370 | }, 371 | "imports": { 372 | "pythons_hub": "pythons_hub" 373 | }, 374 | "devImports": [], 375 | "tags": [ 376 | { 377 | "tagName": "toolchain", 378 | "attributeValues": { 379 | "is_default": true, 380 | "python_version": "3.11" 381 | }, 382 | "devDependency": false, 383 | "location": { 384 | "file": "https://bcr.bazel.build/modules/rules_python/0.24.0/MODULE.bazel", 385 | "line": 42, 386 | "column": 17 387 | } 388 | } 389 | ], 390 | "hasDevUseExtension": false, 391 | "hasNonDevUseExtension": true 392 | } 393 | ], 394 | "deps": { 395 | "platforms": "platforms@0.0.7", 396 | "bazel_skylib": "bazel_skylib@1.5.0", 397 | "rules_proto": "rules_proto@5.3.0-21.7", 398 | "com_google_protobuf": "protobuf@21.7", 399 | "bazel_tools": "bazel_tools@_", 400 | "local_config_platform": "local_config_platform@_" 401 | }, 402 | "repoSpec": { 403 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 404 | "ruleClassName": "http_archive", 405 | "attributes": { 406 | "urls": [ 407 | "https://github.com/bazelbuild/rules_python/releases/download/0.24.0/rules_python-0.24.0.tar.gz" 408 | ], 409 | "integrity": "sha256-CoADsEQpTXhArH2dc+7wXWzraC11FngaTsYu6zRwJXg=", 410 | "strip_prefix": "rules_python-0.24.0", 411 | "remote_patches": { 412 | "https://bcr.bazel.build/modules/rules_python/0.24.0/patches/module_dot_bazel_version.patch": "sha256-cz8Rx8aNLvYvSpiVWk8umcsBy6jAAC0YwU42zj1cNlU=" 413 | }, 414 | "remote_patch_strip": 0 415 | } 416 | } 417 | }, 418 | "rules_cc@0.0.9": { 419 | "name": "rules_cc", 420 | "version": "0.0.9", 421 | "key": "rules_cc@0.0.9", 422 | "repoName": "rules_cc", 423 | "executionPlatformsToRegister": [], 424 | "toolchainsToRegister": [ 425 | "@local_config_cc_toolchains//:all" 426 | ], 427 | "extensionUsages": [ 428 | { 429 | "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", 430 | "extensionName": "cc_configure_extension", 431 | "usingModule": "rules_cc@0.0.9", 432 | "location": { 433 | "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel", 434 | "line": 9, 435 | "column": 29 436 | }, 437 | "imports": { 438 | "local_config_cc_toolchains": "local_config_cc_toolchains" 439 | }, 440 | "devImports": [], 441 | "tags": [], 442 | "hasDevUseExtension": false, 443 | "hasNonDevUseExtension": true 444 | } 445 | ], 446 | "deps": { 447 | "platforms": "platforms@0.0.7", 448 | "bazel_tools": "bazel_tools@_", 449 | "local_config_platform": "local_config_platform@_" 450 | }, 451 | "repoSpec": { 452 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 453 | "ruleClassName": "http_archive", 454 | "attributes": { 455 | "urls": [ 456 | "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz" 457 | ], 458 | "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=", 459 | "strip_prefix": "rules_cc-0.0.9", 460 | "remote_patches": { 461 | "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g=" 462 | }, 463 | "remote_patch_strip": 0 464 | } 465 | } 466 | }, 467 | "rules_java@7.4.0": { 468 | "name": "rules_java", 469 | "version": "7.4.0", 470 | "key": "rules_java@7.4.0", 471 | "repoName": "rules_java", 472 | "executionPlatformsToRegister": [], 473 | "toolchainsToRegister": [ 474 | "//toolchains:all", 475 | "@local_jdk//:runtime_toolchain_definition", 476 | "@local_jdk//:bootstrap_runtime_toolchain_definition", 477 | "@remotejdk11_linux_toolchain_config_repo//:all", 478 | "@remotejdk11_linux_aarch64_toolchain_config_repo//:all", 479 | "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all", 480 | "@remotejdk11_linux_s390x_toolchain_config_repo//:all", 481 | "@remotejdk11_macos_toolchain_config_repo//:all", 482 | "@remotejdk11_macos_aarch64_toolchain_config_repo//:all", 483 | "@remotejdk11_win_toolchain_config_repo//:all", 484 | "@remotejdk11_win_arm64_toolchain_config_repo//:all", 485 | "@remotejdk17_linux_toolchain_config_repo//:all", 486 | "@remotejdk17_linux_aarch64_toolchain_config_repo//:all", 487 | "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all", 488 | "@remotejdk17_linux_s390x_toolchain_config_repo//:all", 489 | "@remotejdk17_macos_toolchain_config_repo//:all", 490 | "@remotejdk17_macos_aarch64_toolchain_config_repo//:all", 491 | "@remotejdk17_win_toolchain_config_repo//:all", 492 | "@remotejdk17_win_arm64_toolchain_config_repo//:all", 493 | "@remotejdk21_linux_toolchain_config_repo//:all", 494 | "@remotejdk21_linux_aarch64_toolchain_config_repo//:all", 495 | "@remotejdk21_macos_toolchain_config_repo//:all", 496 | "@remotejdk21_macos_aarch64_toolchain_config_repo//:all", 497 | "@remotejdk21_win_toolchain_config_repo//:all" 498 | ], 499 | "extensionUsages": [ 500 | { 501 | "extensionBzlFile": "@rules_java//java:extensions.bzl", 502 | "extensionName": "toolchains", 503 | "usingModule": "rules_java@7.4.0", 504 | "location": { 505 | "file": "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel", 506 | "line": 19, 507 | "column": 27 508 | }, 509 | "imports": { 510 | "remote_java_tools": "remote_java_tools", 511 | "remote_java_tools_linux": "remote_java_tools_linux", 512 | "remote_java_tools_windows": "remote_java_tools_windows", 513 | "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", 514 | "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64", 515 | "local_jdk": "local_jdk", 516 | "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo", 517 | "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo", 518 | "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo", 519 | "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo", 520 | "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo", 521 | "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo", 522 | "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo", 523 | "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo", 524 | "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo", 525 | "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo", 526 | "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo", 527 | "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo", 528 | "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo", 529 | "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo", 530 | "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo", 531 | "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo", 532 | "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo", 533 | "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo", 534 | "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo", 535 | "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo", 536 | "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo" 537 | }, 538 | "devImports": [], 539 | "tags": [], 540 | "hasDevUseExtension": false, 541 | "hasNonDevUseExtension": true 542 | } 543 | ], 544 | "deps": { 545 | "platforms": "platforms@0.0.7", 546 | "rules_cc": "rules_cc@0.0.9", 547 | "bazel_skylib": "bazel_skylib@1.5.0", 548 | "rules_proto": "rules_proto@5.3.0-21.7", 549 | "rules_license": "rules_license@0.0.7", 550 | "bazel_tools": "bazel_tools@_", 551 | "local_config_platform": "local_config_platform@_" 552 | }, 553 | "repoSpec": { 554 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 555 | "ruleClassName": "http_archive", 556 | "attributes": { 557 | "urls": [ 558 | "https://github.com/bazelbuild/rules_java/releases/download/7.4.0/rules_java-7.4.0.tar.gz" 559 | ], 560 | "integrity": "sha256-l27wi0nJKXQfIBeQ5Z44B8cq2B9CjIvJU82+/1/tFes=", 561 | "strip_prefix": "", 562 | "remote_patches": {}, 563 | "remote_patch_strip": 0 564 | } 565 | } 566 | }, 567 | "rules_proto@5.3.0-21.7": { 568 | "name": "rules_proto", 569 | "version": "5.3.0-21.7", 570 | "key": "rules_proto@5.3.0-21.7", 571 | "repoName": "rules_proto", 572 | "executionPlatformsToRegister": [], 573 | "toolchainsToRegister": [], 574 | "extensionUsages": [], 575 | "deps": { 576 | "bazel_skylib": "bazel_skylib@1.5.0", 577 | "com_google_protobuf": "protobuf@21.7", 578 | "rules_cc": "rules_cc@0.0.9", 579 | "bazel_tools": "bazel_tools@_", 580 | "local_config_platform": "local_config_platform@_" 581 | }, 582 | "repoSpec": { 583 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 584 | "ruleClassName": "http_archive", 585 | "attributes": { 586 | "urls": [ 587 | "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz" 588 | ], 589 | "integrity": "sha256-3D+yBqLLNEG0heseQjFlsjEjWh6psDG0Qzz3vB+kYN0=", 590 | "strip_prefix": "rules_proto-5.3.0-21.7", 591 | "remote_patches": {}, 592 | "remote_patch_strip": 0 593 | } 594 | } 595 | }, 596 | "buildozer@6.4.0.2": { 597 | "name": "buildozer", 598 | "version": "6.4.0.2", 599 | "key": "buildozer@6.4.0.2", 600 | "repoName": "buildozer", 601 | "executionPlatformsToRegister": [], 602 | "toolchainsToRegister": [], 603 | "extensionUsages": [ 604 | { 605 | "extensionBzlFile": "@buildozer//:buildozer_binary.bzl", 606 | "extensionName": "buildozer_binary", 607 | "usingModule": "buildozer@6.4.0.2", 608 | "location": { 609 | "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel", 610 | "line": 7, 611 | "column": 33 612 | }, 613 | "imports": { 614 | "buildozer_binary": "buildozer_binary" 615 | }, 616 | "devImports": [], 617 | "tags": [ 618 | { 619 | "tagName": "buildozer", 620 | "attributeValues": { 621 | "sha256": { 622 | "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e", 623 | "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d", 624 | "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119", 625 | "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa", 626 | "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b" 627 | }, 628 | "version": "6.4.0" 629 | }, 630 | "devDependency": false, 631 | "location": { 632 | "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel", 633 | "line": 8, 634 | "column": 27 635 | } 636 | } 637 | ], 638 | "hasDevUseExtension": false, 639 | "hasNonDevUseExtension": true 640 | } 641 | ], 642 | "deps": { 643 | "bazel_tools": "bazel_tools@_", 644 | "local_config_platform": "local_config_platform@_" 645 | }, 646 | "repoSpec": { 647 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 648 | "ruleClassName": "http_archive", 649 | "attributes": { 650 | "urls": [ 651 | "https://github.com/fmeum/buildozer/releases/download/v6.4.0.2/buildozer-v6.4.0.2.tar.gz" 652 | ], 653 | "integrity": "sha256-k7tFKQMR2AygxpmZfH0yEPnQmF3efFgD9rBPkj+Yz/8=", 654 | "strip_prefix": "buildozer-6.4.0.2", 655 | "remote_patches": { 656 | "https://bcr.bazel.build/modules/buildozer/6.4.0.2/patches/module_dot_bazel_version.patch": "sha256-gKANF2HMilj7bWmuXs4lbBIAAansuWC4IhWGB/CerjU=" 657 | }, 658 | "remote_patch_strip": 1 659 | } 660 | } 661 | }, 662 | "protobuf@21.7": { 663 | "name": "protobuf", 664 | "version": "21.7", 665 | "key": "protobuf@21.7", 666 | "repoName": "protobuf", 667 | "executionPlatformsToRegister": [], 668 | "toolchainsToRegister": [], 669 | "extensionUsages": [ 670 | { 671 | "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", 672 | "extensionName": "maven", 673 | "usingModule": "protobuf@21.7", 674 | "location": { 675 | "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel", 676 | "line": 22, 677 | "column": 22 678 | }, 679 | "imports": { 680 | "maven": "maven" 681 | }, 682 | "devImports": [], 683 | "tags": [ 684 | { 685 | "tagName": "install", 686 | "attributeValues": { 687 | "name": "maven", 688 | "artifacts": [ 689 | "com.google.code.findbugs:jsr305:3.0.2", 690 | "com.google.code.gson:gson:2.8.9", 691 | "com.google.errorprone:error_prone_annotations:2.3.2", 692 | "com.google.j2objc:j2objc-annotations:1.3", 693 | "com.google.guava:guava:31.1-jre", 694 | "com.google.guava:guava-testlib:31.1-jre", 695 | "com.google.truth:truth:1.1.2", 696 | "junit:junit:4.13.2", 697 | "org.mockito:mockito-core:4.3.1" 698 | ] 699 | }, 700 | "devDependency": false, 701 | "location": { 702 | "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel", 703 | "line": 24, 704 | "column": 14 705 | } 706 | } 707 | ], 708 | "hasDevUseExtension": false, 709 | "hasNonDevUseExtension": true 710 | } 711 | ], 712 | "deps": { 713 | "bazel_skylib": "bazel_skylib@1.5.0", 714 | "rules_python": "rules_python@0.24.0", 715 | "rules_cc": "rules_cc@0.0.9", 716 | "rules_proto": "rules_proto@5.3.0-21.7", 717 | "rules_java": "rules_java@7.4.0", 718 | "rules_pkg": "rules_pkg@0.10.1", 719 | "com_google_abseil": "abseil-cpp@20211102.0", 720 | "zlib": "zlib@1.3", 721 | "upb": "upb@0.0.0-20220923-a547704", 722 | "rules_jvm_external": "rules_jvm_external@4.4.2", 723 | "com_google_googletest": "googletest@1.11.0", 724 | "bazel_tools": "bazel_tools@_", 725 | "local_config_platform": "local_config_platform@_" 726 | }, 727 | "repoSpec": { 728 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 729 | "ruleClassName": "http_archive", 730 | "attributes": { 731 | "urls": [ 732 | "https://github.com/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip" 733 | ], 734 | "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=", 735 | "strip_prefix": "protobuf-21.7", 736 | "remote_patches": { 737 | "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=", 738 | "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=", 739 | "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=", 740 | "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY=" 741 | }, 742 | "remote_patch_strip": 1 743 | } 744 | } 745 | }, 746 | "zlib@1.3": { 747 | "name": "zlib", 748 | "version": "1.3", 749 | "key": "zlib@1.3", 750 | "repoName": "zlib", 751 | "executionPlatformsToRegister": [], 752 | "toolchainsToRegister": [], 753 | "extensionUsages": [], 754 | "deps": { 755 | "platforms": "platforms@0.0.7", 756 | "rules_cc": "rules_cc@0.0.9", 757 | "bazel_tools": "bazel_tools@_", 758 | "local_config_platform": "local_config_platform@_" 759 | }, 760 | "repoSpec": { 761 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 762 | "ruleClassName": "http_archive", 763 | "attributes": { 764 | "urls": [ 765 | "https://github.com/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz" 766 | ], 767 | "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=", 768 | "strip_prefix": "zlib-1.3", 769 | "remote_patches": { 770 | "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=", 771 | "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk=" 772 | }, 773 | "remote_patch_strip": 0 774 | } 775 | } 776 | }, 777 | "apple_support@1.5.0": { 778 | "name": "apple_support", 779 | "version": "1.5.0", 780 | "key": "apple_support@1.5.0", 781 | "repoName": "build_bazel_apple_support", 782 | "executionPlatformsToRegister": [], 783 | "toolchainsToRegister": [ 784 | "@local_config_apple_cc_toolchains//:all" 785 | ], 786 | "extensionUsages": [ 787 | { 788 | "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl", 789 | "extensionName": "apple_cc_configure_extension", 790 | "usingModule": "apple_support@1.5.0", 791 | "location": { 792 | "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel", 793 | "line": 17, 794 | "column": 35 795 | }, 796 | "imports": { 797 | "local_config_apple_cc": "local_config_apple_cc", 798 | "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains" 799 | }, 800 | "devImports": [], 801 | "tags": [], 802 | "hasDevUseExtension": false, 803 | "hasNonDevUseExtension": true 804 | } 805 | ], 806 | "deps": { 807 | "bazel_skylib": "bazel_skylib@1.5.0", 808 | "platforms": "platforms@0.0.7", 809 | "bazel_tools": "bazel_tools@_", 810 | "local_config_platform": "local_config_platform@_" 811 | }, 812 | "repoSpec": { 813 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 814 | "ruleClassName": "http_archive", 815 | "attributes": { 816 | "urls": [ 817 | "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz" 818 | ], 819 | "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=", 820 | "strip_prefix": "", 821 | "remote_patches": {}, 822 | "remote_patch_strip": 0 823 | } 824 | } 825 | }, 826 | "abseil-cpp@20211102.0": { 827 | "name": "abseil-cpp", 828 | "version": "20211102.0", 829 | "key": "abseil-cpp@20211102.0", 830 | "repoName": "abseil-cpp", 831 | "executionPlatformsToRegister": [], 832 | "toolchainsToRegister": [], 833 | "extensionUsages": [], 834 | "deps": { 835 | "rules_cc": "rules_cc@0.0.9", 836 | "platforms": "platforms@0.0.7", 837 | "bazel_tools": "bazel_tools@_", 838 | "local_config_platform": "local_config_platform@_" 839 | }, 840 | "repoSpec": { 841 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 842 | "ruleClassName": "http_archive", 843 | "attributes": { 844 | "urls": [ 845 | "https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz" 846 | ], 847 | "integrity": "sha256-3PcbnLqNwMqZQMSzFqDHlr6Pq0KwcLtrfKtitI8OZsQ=", 848 | "strip_prefix": "abseil-cpp-20211102.0", 849 | "remote_patches": { 850 | "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/patches/module_dot_bazel.patch": "sha256-4izqopgGCey4jVZzl/w3M2GVPNohjh2B5TmbThZNvPY=" 851 | }, 852 | "remote_patch_strip": 0 853 | } 854 | } 855 | }, 856 | "upb@0.0.0-20220923-a547704": { 857 | "name": "upb", 858 | "version": "0.0.0-20220923-a547704", 859 | "key": "upb@0.0.0-20220923-a547704", 860 | "repoName": "upb", 861 | "executionPlatformsToRegister": [], 862 | "toolchainsToRegister": [], 863 | "extensionUsages": [], 864 | "deps": { 865 | "bazel_skylib": "bazel_skylib@1.5.0", 866 | "rules_proto": "rules_proto@5.3.0-21.7", 867 | "com_google_protobuf": "protobuf@21.7", 868 | "com_google_absl": "abseil-cpp@20211102.0", 869 | "platforms": "platforms@0.0.7", 870 | "bazel_tools": "bazel_tools@_", 871 | "local_config_platform": "local_config_platform@_" 872 | }, 873 | "repoSpec": { 874 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 875 | "ruleClassName": "http_archive", 876 | "attributes": { 877 | "urls": [ 878 | "https://github.com/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz" 879 | ], 880 | "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=", 881 | "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577", 882 | "remote_patches": { 883 | "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0=" 884 | }, 885 | "remote_patch_strip": 0 886 | } 887 | } 888 | }, 889 | "rules_jvm_external@4.4.2": { 890 | "name": "rules_jvm_external", 891 | "version": "4.4.2", 892 | "key": "rules_jvm_external@4.4.2", 893 | "repoName": "rules_jvm_external", 894 | "executionPlatformsToRegister": [], 895 | "toolchainsToRegister": [], 896 | "extensionUsages": [ 897 | { 898 | "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl", 899 | "extensionName": "non_module_deps", 900 | "usingModule": "rules_jvm_external@4.4.2", 901 | "location": { 902 | "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", 903 | "line": 9, 904 | "column": 32 905 | }, 906 | "imports": { 907 | "io_bazel_rules_kotlin": "io_bazel_rules_kotlin" 908 | }, 909 | "devImports": [], 910 | "tags": [], 911 | "hasDevUseExtension": false, 912 | "hasNonDevUseExtension": true 913 | }, 914 | { 915 | "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", 916 | "extensionName": "maven", 917 | "usingModule": "rules_jvm_external@4.4.2", 918 | "location": { 919 | "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", 920 | "line": 16, 921 | "column": 22 922 | }, 923 | "imports": { 924 | "rules_jvm_external_deps": "rules_jvm_external_deps" 925 | }, 926 | "devImports": [], 927 | "tags": [ 928 | { 929 | "tagName": "install", 930 | "attributeValues": { 931 | "name": "rules_jvm_external_deps", 932 | "artifacts": [ 933 | "com.google.cloud:google-cloud-core:1.93.10", 934 | "com.google.cloud:google-cloud-storage:1.113.4", 935 | "com.google.code.gson:gson:2.9.0", 936 | "org.apache.maven:maven-artifact:3.8.6", 937 | "software.amazon.awssdk:s3:2.17.183" 938 | ], 939 | "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json" 940 | }, 941 | "devDependency": false, 942 | "location": { 943 | "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", 944 | "line": 18, 945 | "column": 14 946 | } 947 | } 948 | ], 949 | "hasDevUseExtension": false, 950 | "hasNonDevUseExtension": true 951 | } 952 | ], 953 | "deps": { 954 | "bazel_skylib": "bazel_skylib@1.5.0", 955 | "io_bazel_stardoc": "stardoc@0.5.1", 956 | "bazel_tools": "bazel_tools@_", 957 | "local_config_platform": "local_config_platform@_" 958 | }, 959 | "repoSpec": { 960 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 961 | "ruleClassName": "http_archive", 962 | "attributes": { 963 | "urls": [ 964 | "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/4.4.2.zip" 965 | ], 966 | "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=", 967 | "strip_prefix": "rules_jvm_external-4.4.2", 968 | "remote_patches": {}, 969 | "remote_patch_strip": 0 970 | } 971 | } 972 | }, 973 | "googletest@1.11.0": { 974 | "name": "googletest", 975 | "version": "1.11.0", 976 | "key": "googletest@1.11.0", 977 | "repoName": "googletest", 978 | "executionPlatformsToRegister": [], 979 | "toolchainsToRegister": [], 980 | "extensionUsages": [], 981 | "deps": { 982 | "com_google_absl": "abseil-cpp@20211102.0", 983 | "platforms": "platforms@0.0.7", 984 | "rules_cc": "rules_cc@0.0.9", 985 | "bazel_tools": "bazel_tools@_", 986 | "local_config_platform": "local_config_platform@_" 987 | }, 988 | "repoSpec": { 989 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 990 | "ruleClassName": "http_archive", 991 | "attributes": { 992 | "urls": [ 993 | "https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz" 994 | ], 995 | "integrity": "sha256-tIcL8SH/d5W6INILzdhie44Ijy0dqymaAxwQNO3ck9U=", 996 | "strip_prefix": "googletest-release-1.11.0", 997 | "remote_patches": { 998 | "https://bcr.bazel.build/modules/googletest/1.11.0/patches/module_dot_bazel.patch": "sha256-HuahEdI/n8KCI071sN3CEziX+7qP/Ec77IWayYunLP0=" 999 | }, 1000 | "remote_patch_strip": 0 1001 | } 1002 | } 1003 | }, 1004 | "stardoc@0.5.1": { 1005 | "name": "stardoc", 1006 | "version": "0.5.1", 1007 | "key": "stardoc@0.5.1", 1008 | "repoName": "stardoc", 1009 | "executionPlatformsToRegister": [], 1010 | "toolchainsToRegister": [], 1011 | "extensionUsages": [], 1012 | "deps": { 1013 | "bazel_skylib": "bazel_skylib@1.5.0", 1014 | "rules_java": "rules_java@7.4.0", 1015 | "bazel_tools": "bazel_tools@_", 1016 | "local_config_platform": "local_config_platform@_" 1017 | }, 1018 | "repoSpec": { 1019 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1020 | "ruleClassName": "http_archive", 1021 | "attributes": { 1022 | "urls": [ 1023 | "https://github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz" 1024 | ], 1025 | "integrity": "sha256-qoFNrgrEALurLoiB+ZFcb0fElmS/CHxAmhX5BDjSwj4=", 1026 | "strip_prefix": "", 1027 | "remote_patches": { 1028 | "https://bcr.bazel.build/modules/stardoc/0.5.1/patches/module_dot_bazel.patch": "sha256-UAULCuTpJE7SG0YrR9XLjMfxMRmbP+za3uW9ONZ5rjI=" 1029 | }, 1030 | "remote_patch_strip": 0 1031 | } 1032 | } 1033 | } 1034 | }, 1035 | "moduleExtensions": { 1036 | "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { 1037 | "general": { 1038 | "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", 1039 | "recordedFileInputs": {}, 1040 | "recordedDirentsInputs": {}, 1041 | "envVariables": {}, 1042 | "generatedRepoSpecs": { 1043 | "local_config_apple_cc": { 1044 | "bzlFile": "@@apple_support~//crosstool:setup.bzl", 1045 | "ruleClassName": "_apple_cc_autoconf", 1046 | "attributes": {} 1047 | }, 1048 | "local_config_apple_cc_toolchains": { 1049 | "bzlFile": "@@apple_support~//crosstool:setup.bzl", 1050 | "ruleClassName": "_apple_cc_autoconf_toolchains", 1051 | "attributes": {} 1052 | } 1053 | }, 1054 | "recordedRepoMappingEntries": [ 1055 | [ 1056 | "apple_support~", 1057 | "bazel_tools", 1058 | "bazel_tools" 1059 | ] 1060 | ] 1061 | } 1062 | }, 1063 | "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { 1064 | "general": { 1065 | "bzlTransitiveDigest": "PHpT2yqMGms2U4L3E/aZ+WcQalmZWm+ILdP3yiLsDhA=", 1066 | "recordedFileInputs": {}, 1067 | "recordedDirentsInputs": {}, 1068 | "envVariables": {}, 1069 | "generatedRepoSpecs": { 1070 | "local_config_cc": { 1071 | "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", 1072 | "ruleClassName": "cc_autoconf", 1073 | "attributes": {} 1074 | }, 1075 | "local_config_cc_toolchains": { 1076 | "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", 1077 | "ruleClassName": "cc_autoconf_toolchains", 1078 | "attributes": {} 1079 | } 1080 | }, 1081 | "recordedRepoMappingEntries": [ 1082 | [ 1083 | "bazel_tools", 1084 | "bazel_tools", 1085 | "bazel_tools" 1086 | ] 1087 | ] 1088 | } 1089 | }, 1090 | "@@bazel_tools//tools/osx:xcode_configure.bzl%xcode_configure_extension": { 1091 | "general": { 1092 | "bzlTransitiveDigest": "Qh2bWTU6QW6wkrd87qrU4YeY+SG37Nvw3A0PR4Y0L2Y=", 1093 | "recordedFileInputs": {}, 1094 | "recordedDirentsInputs": {}, 1095 | "envVariables": {}, 1096 | "generatedRepoSpecs": { 1097 | "local_config_xcode": { 1098 | "bzlFile": "@@bazel_tools//tools/osx:xcode_configure.bzl", 1099 | "ruleClassName": "xcode_autoconf", 1100 | "attributes": { 1101 | "xcode_locator": "@bazel_tools//tools/osx:xcode_locator.m", 1102 | "remote_xcode": "" 1103 | } 1104 | } 1105 | }, 1106 | "recordedRepoMappingEntries": [] 1107 | } 1108 | }, 1109 | "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { 1110 | "general": { 1111 | "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", 1112 | "recordedFileInputs": {}, 1113 | "recordedDirentsInputs": {}, 1114 | "envVariables": {}, 1115 | "generatedRepoSpecs": { 1116 | "local_config_sh": { 1117 | "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", 1118 | "ruleClassName": "sh_config", 1119 | "attributes": {} 1120 | } 1121 | }, 1122 | "recordedRepoMappingEntries": [] 1123 | } 1124 | }, 1125 | "@@rules_java~//java:extensions.bzl%toolchains": { 1126 | "general": { 1127 | "bzlTransitiveDigest": "tJHbmWnq7m+9eUBnUdv7jZziQ26FmcGL9C5/hU3Q9UQ=", 1128 | "recordedFileInputs": {}, 1129 | "recordedDirentsInputs": {}, 1130 | "envVariables": {}, 1131 | "generatedRepoSpecs": { 1132 | "remotejdk21_linux_toolchain_config_repo": { 1133 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1134 | "ruleClassName": "_toolchain_config", 1135 | "attributes": { 1136 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" 1137 | } 1138 | }, 1139 | "remotejdk17_linux_s390x_toolchain_config_repo": { 1140 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1141 | "ruleClassName": "_toolchain_config", 1142 | "attributes": { 1143 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" 1144 | } 1145 | }, 1146 | "remotejdk17_macos_toolchain_config_repo": { 1147 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1148 | "ruleClassName": "_toolchain_config", 1149 | "attributes": { 1150 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" 1151 | } 1152 | }, 1153 | "remotejdk21_macos_aarch64_toolchain_config_repo": { 1154 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1155 | "ruleClassName": "_toolchain_config", 1156 | "attributes": { 1157 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" 1158 | } 1159 | }, 1160 | "remotejdk17_linux_aarch64_toolchain_config_repo": { 1161 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1162 | "ruleClassName": "_toolchain_config", 1163 | "attributes": { 1164 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" 1165 | } 1166 | }, 1167 | "remotejdk21_macos_aarch64": { 1168 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1169 | "ruleClassName": "http_archive", 1170 | "attributes": { 1171 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", 1172 | "sha256": "e8260516de8b60661422a725f1df2c36ef888f6fb35393566b00e7325db3d04e", 1173 | "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_aarch64", 1174 | "urls": [ 1175 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz", 1176 | "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz" 1177 | ] 1178 | } 1179 | }, 1180 | "remotejdk17_linux_toolchain_config_repo": { 1181 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1182 | "ruleClassName": "_toolchain_config", 1183 | "attributes": { 1184 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" 1185 | } 1186 | }, 1187 | "remotejdk17_macos_aarch64": { 1188 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1189 | "ruleClassName": "http_archive", 1190 | "attributes": { 1191 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1192 | "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", 1193 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", 1194 | "urls": [ 1195 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", 1196 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" 1197 | ] 1198 | } 1199 | }, 1200 | "remote_java_tools_windows": { 1201 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1202 | "ruleClassName": "http_archive", 1203 | "attributes": { 1204 | "sha256": "fe2f88169696d6c6fc6e90ba61bb46be7d0ae3693cbafdf336041bf56679e8d1", 1205 | "urls": [ 1206 | "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_windows-v13.4.zip", 1207 | "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_windows-v13.4.zip" 1208 | ] 1209 | } 1210 | }, 1211 | "remotejdk11_win": { 1212 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1213 | "ruleClassName": "http_archive", 1214 | "attributes": { 1215 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1216 | "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", 1217 | "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", 1218 | "urls": [ 1219 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", 1220 | "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" 1221 | ] 1222 | } 1223 | }, 1224 | "remotejdk11_win_toolchain_config_repo": { 1225 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1226 | "ruleClassName": "_toolchain_config", 1227 | "attributes": { 1228 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" 1229 | } 1230 | }, 1231 | "remotejdk11_linux_aarch64": { 1232 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1233 | "ruleClassName": "http_archive", 1234 | "attributes": { 1235 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1236 | "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", 1237 | "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", 1238 | "urls": [ 1239 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", 1240 | "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" 1241 | ] 1242 | } 1243 | }, 1244 | "remotejdk17_linux": { 1245 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1246 | "ruleClassName": "http_archive", 1247 | "attributes": { 1248 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1249 | "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", 1250 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", 1251 | "urls": [ 1252 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", 1253 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" 1254 | ] 1255 | } 1256 | }, 1257 | "remotejdk11_linux_s390x_toolchain_config_repo": { 1258 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1259 | "ruleClassName": "_toolchain_config", 1260 | "attributes": { 1261 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" 1262 | } 1263 | }, 1264 | "remotejdk11_linux_toolchain_config_repo": { 1265 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1266 | "ruleClassName": "_toolchain_config", 1267 | "attributes": { 1268 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" 1269 | } 1270 | }, 1271 | "remotejdk11_macos": { 1272 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1273 | "ruleClassName": "http_archive", 1274 | "attributes": { 1275 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1276 | "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", 1277 | "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", 1278 | "urls": [ 1279 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", 1280 | "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" 1281 | ] 1282 | } 1283 | }, 1284 | "remotejdk11_win_arm64": { 1285 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1286 | "ruleClassName": "http_archive", 1287 | "attributes": { 1288 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1289 | "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", 1290 | "strip_prefix": "jdk-11.0.13+8", 1291 | "urls": [ 1292 | "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" 1293 | ] 1294 | } 1295 | }, 1296 | "remotejdk17_macos": { 1297 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1298 | "ruleClassName": "http_archive", 1299 | "attributes": { 1300 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1301 | "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", 1302 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", 1303 | "urls": [ 1304 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", 1305 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" 1306 | ] 1307 | } 1308 | }, 1309 | "remotejdk21_macos": { 1310 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1311 | "ruleClassName": "http_archive", 1312 | "attributes": { 1313 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", 1314 | "sha256": "3ad8fe288eb57d975c2786ae453a036aa46e47ab2ac3d81538ebae2a54d3c025", 1315 | "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_x64", 1316 | "urls": [ 1317 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz", 1318 | "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz" 1319 | ] 1320 | } 1321 | }, 1322 | "remotejdk21_macos_toolchain_config_repo": { 1323 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1324 | "ruleClassName": "_toolchain_config", 1325 | "attributes": { 1326 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" 1327 | } 1328 | }, 1329 | "remotejdk17_macos_aarch64_toolchain_config_repo": { 1330 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1331 | "ruleClassName": "_toolchain_config", 1332 | "attributes": { 1333 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" 1334 | } 1335 | }, 1336 | "remotejdk17_win": { 1337 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1338 | "ruleClassName": "http_archive", 1339 | "attributes": { 1340 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1341 | "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", 1342 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", 1343 | "urls": [ 1344 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", 1345 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" 1346 | ] 1347 | } 1348 | }, 1349 | "remotejdk11_macos_aarch64_toolchain_config_repo": { 1350 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1351 | "ruleClassName": "_toolchain_config", 1352 | "attributes": { 1353 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" 1354 | } 1355 | }, 1356 | "remotejdk11_linux_ppc64le_toolchain_config_repo": { 1357 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1358 | "ruleClassName": "_toolchain_config", 1359 | "attributes": { 1360 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" 1361 | } 1362 | }, 1363 | "remotejdk21_linux": { 1364 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1365 | "ruleClassName": "http_archive", 1366 | "attributes": { 1367 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", 1368 | "sha256": "5ad730fbee6bb49bfff10bf39e84392e728d89103d3474a7e5def0fd134b300a", 1369 | "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_x64", 1370 | "urls": [ 1371 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz", 1372 | "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz" 1373 | ] 1374 | } 1375 | }, 1376 | "remote_java_tools_linux": { 1377 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1378 | "ruleClassName": "http_archive", 1379 | "attributes": { 1380 | "sha256": "ba10f09a138cf185d04cbc807d67a3da42ab13d618c5d1ce20d776e199c33a39", 1381 | "urls": [ 1382 | "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_linux-v13.4.zip", 1383 | "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_linux-v13.4.zip" 1384 | ] 1385 | } 1386 | }, 1387 | "remotejdk21_win": { 1388 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1389 | "ruleClassName": "http_archive", 1390 | "attributes": { 1391 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", 1392 | "sha256": "f7cc15ca17295e69c907402dfe8db240db446e75d3b150da7bf67243cded93de", 1393 | "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-win_x64", 1394 | "urls": [ 1395 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip", 1396 | "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip" 1397 | ] 1398 | } 1399 | }, 1400 | "remotejdk21_linux_aarch64": { 1401 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1402 | "ruleClassName": "http_archive", 1403 | "attributes": { 1404 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", 1405 | "sha256": "ce7df1af5d44a9f455617c4b8891443fbe3e4b269c777d8b82ed66f77167cfe0", 1406 | "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_aarch64", 1407 | "urls": [ 1408 | "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz", 1409 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz" 1410 | ] 1411 | } 1412 | }, 1413 | "remotejdk11_linux_aarch64_toolchain_config_repo": { 1414 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1415 | "ruleClassName": "_toolchain_config", 1416 | "attributes": { 1417 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" 1418 | } 1419 | }, 1420 | "remotejdk11_linux_s390x": { 1421 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1422 | "ruleClassName": "http_archive", 1423 | "attributes": { 1424 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1425 | "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", 1426 | "strip_prefix": "jdk-11.0.15+10", 1427 | "urls": [ 1428 | "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", 1429 | "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" 1430 | ] 1431 | } 1432 | }, 1433 | "remotejdk17_linux_aarch64": { 1434 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1435 | "ruleClassName": "http_archive", 1436 | "attributes": { 1437 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1438 | "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", 1439 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", 1440 | "urls": [ 1441 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", 1442 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" 1443 | ] 1444 | } 1445 | }, 1446 | "remotejdk17_win_arm64_toolchain_config_repo": { 1447 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1448 | "ruleClassName": "_toolchain_config", 1449 | "attributes": { 1450 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" 1451 | } 1452 | }, 1453 | "remotejdk11_linux": { 1454 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1455 | "ruleClassName": "http_archive", 1456 | "attributes": { 1457 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1458 | "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", 1459 | "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", 1460 | "urls": [ 1461 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", 1462 | "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" 1463 | ] 1464 | } 1465 | }, 1466 | "remotejdk11_macos_toolchain_config_repo": { 1467 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1468 | "ruleClassName": "_toolchain_config", 1469 | "attributes": { 1470 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" 1471 | } 1472 | }, 1473 | "remotejdk17_linux_ppc64le_toolchain_config_repo": { 1474 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1475 | "ruleClassName": "_toolchain_config", 1476 | "attributes": { 1477 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" 1478 | } 1479 | }, 1480 | "remotejdk17_win_arm64": { 1481 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1482 | "ruleClassName": "http_archive", 1483 | "attributes": { 1484 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1485 | "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", 1486 | "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", 1487 | "urls": [ 1488 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", 1489 | "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" 1490 | ] 1491 | } 1492 | }, 1493 | "remote_java_tools_darwin_arm64": { 1494 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1495 | "ruleClassName": "http_archive", 1496 | "attributes": { 1497 | "sha256": "076a7e198ad077f8c7d997986ef5102427fae6bbfce7a7852d2e080ed8767528", 1498 | "urls": [ 1499 | "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_arm64-v13.4.zip", 1500 | "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_arm64-v13.4.zip" 1501 | ] 1502 | } 1503 | }, 1504 | "remotejdk17_linux_ppc64le": { 1505 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1506 | "ruleClassName": "http_archive", 1507 | "attributes": { 1508 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1509 | "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", 1510 | "strip_prefix": "jdk-17.0.8.1+1", 1511 | "urls": [ 1512 | "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", 1513 | "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" 1514 | ] 1515 | } 1516 | }, 1517 | "remotejdk21_linux_aarch64_toolchain_config_repo": { 1518 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1519 | "ruleClassName": "_toolchain_config", 1520 | "attributes": { 1521 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" 1522 | } 1523 | }, 1524 | "remotejdk11_win_arm64_toolchain_config_repo": { 1525 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1526 | "ruleClassName": "_toolchain_config", 1527 | "attributes": { 1528 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" 1529 | } 1530 | }, 1531 | "local_jdk": { 1532 | "bzlFile": "@@rules_java~//toolchains:local_java_repository.bzl", 1533 | "ruleClassName": "_local_java_repository_rule", 1534 | "attributes": { 1535 | "java_home": "", 1536 | "version": "", 1537 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" 1538 | } 1539 | }, 1540 | "remote_java_tools_darwin_x86_64": { 1541 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1542 | "ruleClassName": "http_archive", 1543 | "attributes": { 1544 | "sha256": "4523aec4d09c587091a2dae6f5c9bc6922c220f3b6030e5aba9c8f015913cc65", 1545 | "urls": [ 1546 | "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_x86_64-v13.4.zip", 1547 | "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_x86_64-v13.4.zip" 1548 | ] 1549 | } 1550 | }, 1551 | "remote_java_tools": { 1552 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1553 | "ruleClassName": "http_archive", 1554 | "attributes": { 1555 | "sha256": "e025fd260ac39b47c111f5212d64ec0d00d85dec16e49368aae82fc626a940cf", 1556 | "urls": [ 1557 | "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools-v13.4.zip", 1558 | "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools-v13.4.zip" 1559 | ] 1560 | } 1561 | }, 1562 | "remotejdk17_linux_s390x": { 1563 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1564 | "ruleClassName": "http_archive", 1565 | "attributes": { 1566 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", 1567 | "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", 1568 | "strip_prefix": "jdk-17.0.8.1+1", 1569 | "urls": [ 1570 | "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", 1571 | "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" 1572 | ] 1573 | } 1574 | }, 1575 | "remotejdk17_win_toolchain_config_repo": { 1576 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1577 | "ruleClassName": "_toolchain_config", 1578 | "attributes": { 1579 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" 1580 | } 1581 | }, 1582 | "remotejdk11_linux_ppc64le": { 1583 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1584 | "ruleClassName": "http_archive", 1585 | "attributes": { 1586 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1587 | "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", 1588 | "strip_prefix": "jdk-11.0.15+10", 1589 | "urls": [ 1590 | "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", 1591 | "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" 1592 | ] 1593 | } 1594 | }, 1595 | "remotejdk11_macos_aarch64": { 1596 | "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", 1597 | "ruleClassName": "http_archive", 1598 | "attributes": { 1599 | "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", 1600 | "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", 1601 | "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", 1602 | "urls": [ 1603 | "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", 1604 | "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" 1605 | ] 1606 | } 1607 | }, 1608 | "remotejdk21_win_toolchain_config_repo": { 1609 | "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", 1610 | "ruleClassName": "_toolchain_config", 1611 | "attributes": { 1612 | "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" 1613 | } 1614 | } 1615 | }, 1616 | "recordedRepoMappingEntries": [ 1617 | [ 1618 | "rules_java~", 1619 | "bazel_tools", 1620 | "bazel_tools" 1621 | ], 1622 | [ 1623 | "rules_java~", 1624 | "remote_java_tools", 1625 | "rules_java~~toolchains~remote_java_tools" 1626 | ] 1627 | ] 1628 | } 1629 | }, 1630 | "@@rules_python~//python/extensions:python.bzl%python": { 1631 | "general": { 1632 | "bzlTransitiveDigest": "mh86AsACwkNSoqpB2hzQpecNE0j+gb57EL0ZjxD3ZRE=", 1633 | "recordedFileInputs": {}, 1634 | "recordedDirentsInputs": {}, 1635 | "envVariables": {}, 1636 | "generatedRepoSpecs": { 1637 | "python_3_11": { 1638 | "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl", 1639 | "ruleClassName": "toolchain_aliases", 1640 | "attributes": { 1641 | "python_version": "3.11.1", 1642 | "user_repository_name": "python_3_11" 1643 | } 1644 | }, 1645 | "python_3_11_aarch64-unknown-linux-gnu": { 1646 | "bzlFile": "@@rules_python~//python:repositories.bzl", 1647 | "ruleClassName": "python_repository", 1648 | "attributes": { 1649 | "sha256": "debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4", 1650 | "patches": [], 1651 | "platform": "aarch64-unknown-linux-gnu", 1652 | "python_version": "3.11.1", 1653 | "release_filename": "20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz", 1654 | "urls": [ 1655 | "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz" 1656 | ], 1657 | "distutils_content": "", 1658 | "strip_prefix": "python", 1659 | "coverage_tool": "", 1660 | "ignore_root_user_error": false 1661 | } 1662 | }, 1663 | "python_3_11_aarch64-apple-darwin": { 1664 | "bzlFile": "@@rules_python~//python:repositories.bzl", 1665 | "ruleClassName": "python_repository", 1666 | "attributes": { 1667 | "sha256": "4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80", 1668 | "patches": [], 1669 | "platform": "aarch64-apple-darwin", 1670 | "python_version": "3.11.1", 1671 | "release_filename": "20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz", 1672 | "urls": [ 1673 | "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz" 1674 | ], 1675 | "distutils_content": "", 1676 | "strip_prefix": "python", 1677 | "coverage_tool": "", 1678 | "ignore_root_user_error": false 1679 | } 1680 | }, 1681 | "python_3_11_x86_64-apple-darwin": { 1682 | "bzlFile": "@@rules_python~//python:repositories.bzl", 1683 | "ruleClassName": "python_repository", 1684 | "attributes": { 1685 | "sha256": "20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733", 1686 | "patches": [], 1687 | "platform": "x86_64-apple-darwin", 1688 | "python_version": "3.11.1", 1689 | "release_filename": "20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz", 1690 | "urls": [ 1691 | "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz" 1692 | ], 1693 | "distutils_content": "", 1694 | "strip_prefix": "python", 1695 | "coverage_tool": "", 1696 | "ignore_root_user_error": false 1697 | } 1698 | }, 1699 | "pythons_hub": { 1700 | "bzlFile": "@@rules_python~//python/extensions/private:pythons_hub.bzl", 1701 | "ruleClassName": "hub_repo", 1702 | "attributes": { 1703 | "default_python_version": "3.11", 1704 | "toolchain_prefixes": [ 1705 | "_0000_python_3_11_" 1706 | ], 1707 | "toolchain_python_versions": [ 1708 | "3.11" 1709 | ], 1710 | "toolchain_set_python_version_constraints": [ 1711 | "False" 1712 | ], 1713 | "toolchain_user_repository_names": [ 1714 | "python_3_11" 1715 | ] 1716 | } 1717 | }, 1718 | "python_versions": { 1719 | "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl", 1720 | "ruleClassName": "multi_toolchain_aliases", 1721 | "attributes": { 1722 | "python_versions": { 1723 | "3.11": "python_3_11" 1724 | } 1725 | } 1726 | }, 1727 | "python_3_11_x86_64-pc-windows-msvc": { 1728 | "bzlFile": "@@rules_python~//python:repositories.bzl", 1729 | "ruleClassName": "python_repository", 1730 | "attributes": { 1731 | "sha256": "edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf", 1732 | "patches": [], 1733 | "platform": "x86_64-pc-windows-msvc", 1734 | "python_version": "3.11.1", 1735 | "release_filename": "20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz", 1736 | "urls": [ 1737 | "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz" 1738 | ], 1739 | "distutils_content": "", 1740 | "strip_prefix": "python", 1741 | "coverage_tool": "", 1742 | "ignore_root_user_error": false 1743 | } 1744 | }, 1745 | "python_3_11_x86_64-unknown-linux-gnu": { 1746 | "bzlFile": "@@rules_python~//python:repositories.bzl", 1747 | "ruleClassName": "python_repository", 1748 | "attributes": { 1749 | "sha256": "02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423", 1750 | "patches": [], 1751 | "platform": "x86_64-unknown-linux-gnu", 1752 | "python_version": "3.11.1", 1753 | "release_filename": "20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz", 1754 | "urls": [ 1755 | "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz" 1756 | ], 1757 | "distutils_content": "", 1758 | "strip_prefix": "python", 1759 | "coverage_tool": "", 1760 | "ignore_root_user_error": false 1761 | } 1762 | } 1763 | }, 1764 | "recordedRepoMappingEntries": [ 1765 | [ 1766 | "rules_python~", 1767 | "bazel_tools", 1768 | "bazel_tools" 1769 | ] 1770 | ] 1771 | } 1772 | } 1773 | } 1774 | } 1775 | --------------------------------------------------------------------------------