| workspace(name = "io_bazel") | 
 |  | 
 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") | 
 |  | 
 | # Protobuf expects an //external:python_headers label which would contain the | 
 | # Python headers if fast Python protos is enabled. Since we are not using fast | 
 | # Python protos, bind python_headers to a dummy target. | 
 | bind( | 
 |     name = "python_headers", | 
 |     actual = "//:dummy", | 
 | ) | 
 |  | 
 | # Protobuf code generation for GRPC requires three external labels: | 
 | # //external:grpc-java_plugin | 
 | # //external:grpc-jar | 
 | # //external:guava | 
 | bind( | 
 |     name = "grpc-java-plugin", | 
 |     actual = "//third_party/grpc:grpc-java-plugin", | 
 | ) | 
 |  | 
 | bind( | 
 |     name = "grpc-jar", | 
 |     actual = "//third_party/grpc:grpc-jar", | 
 | ) | 
 |  | 
 | bind( | 
 |     name = "guava", | 
 |     actual = "//third_party:guava", | 
 | ) | 
 |  | 
 | # Used by //third_party/protobuf:protobuf_python | 
 | bind( | 
 |     name = "six", | 
 |     actual = "//third_party/py/six", | 
 | ) | 
 |  | 
 | http_archive( | 
 |     name = "bazel_j2objc", | 
 |     # Computed using "shasum -a 256 j2objc-2.0.3.zip" | 
 |     sha256 = "a36bac432d0dbd8c98249e484b2b69dd5720afa4abb58711a3c3def1c0bfa21d", | 
 |     strip_prefix = "j2objc-2.0.3", | 
 |     url = "https://github.com/google/j2objc/releases/download/2.0.3/j2objc-2.0.3.zip", | 
 | ) | 
 |  | 
 | # For src/test/shell/bazel:test_srcs | 
 | load("//src/test/shell/bazel:list_source_repository.bzl", "list_source_repository") | 
 |  | 
 | list_source_repository(name = "local_bazel_source_list") | 
 |  | 
 | # To run the Android integration tests in //src/test/shell/bazel/android:all or | 
 | # build the Android sample app in //examples/android/java/bazel:hello_world | 
 | # | 
 | #   1. Install an Android SDK and NDK from https://developer.android.com | 
 | #   2. Set the $ANDROID_HOME and $ANDROID_NDK_HOME environment variables | 
 | #   3. Uncomment the two lines below | 
 | # | 
 | # android_sdk_repository(name = "androidsdk") | 
 | # android_ndk_repository(name = "androidndk") | 
 |  | 
 | # In order to run //src/test/shell/bazel:maven_skylark_test, follow the | 
 | # instructions above for the Android integration tests and uncomment the | 
 | # following lines: | 
 | # load("//tools/build_defs/repo:maven_rules.bzl", "maven_dependency_plugin") | 
 | # maven_dependency_plugin() | 
 |  | 
 | # This allows rules written in skylark to locate apple build tools. | 
 | bind( | 
 |     name = "xcrunwrapper", | 
 |     actual = "@bazel_tools//tools/objc:xcrunwrapper", | 
 | ) | 
 |  | 
 | new_local_repository( | 
 |     name = "com_google_protobuf", | 
 |     build_file = "./third_party/protobuf/3.6.1/BUILD", | 
 |     path = "./third_party/protobuf/3.6.1/", | 
 | ) | 
 |  | 
 | local_repository( | 
 |     name = "googleapis", | 
 |     path = "./third_party/googleapis/", | 
 | ) | 
 |  | 
 | local_repository( | 
 |     name = "remoteapis", | 
 |     path = "./third_party/remoteapis/", | 
 | ) | 
 |  | 
 | http_archive( | 
 |     name = "desugar_jdk_libs", | 
 |     # Commit e0b0291b2c51fbe5a7cfa14473a1ae850f94f021 of 2018-12-4 | 
 |     # Computed using "shasum -a 256 <zip>" | 
 |     sha256 = "fe2e04f91ce8c59d49d91b8102edc6627c6fa2906c1b0e7346f01419ec4f419d", | 
 |     strip_prefix = "desugar_jdk_libs-e0b0291b2c51fbe5a7cfa14473a1ae850f94f021", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/github.com/google/desugar_jdk_libs/archive/e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip", | 
 |         "https://github.com/google/desugar_jdk_libs/archive/e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip", | 
 |     ], | 
 | ) | 
 |  | 
 | load("//:distdir.bzl", "distdir_tar") | 
 |  | 
 | distdir_tar( | 
 |     name = "additional_distfiles", | 
 |     # Keep in sync with the archives fetched as part of building bazel | 
 |     archives = [ | 
 |         "e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip", | 
 |         "f83cb8dd6f5658bc574ccd873e25197055265d1c.tar.gz", | 
 |     ], | 
 |     dirname = "derived/distdir", | 
 |     sha256 = { | 
 |         "e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip": "fe2e04f91ce8c59d49d91b8102edc6627c6fa2906c1b0e7346f01419ec4f419d", | 
 |         "f83cb8dd6f5658bc574ccd873e25197055265d1c.tar.gz": "ba5d15ca230efca96320085d8e4d58da826d1f81b444ef8afccd8b23e0799b52", | 
 |     }, | 
 |     urls = { | 
 |         "e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip": ["https://github.com/google/desugar_jdk_libs/archive/e0b0291b2c51fbe5a7cfa14473a1ae850f94f021.zip"], | 
 |         "f83cb8dd6f5658bc574ccd873e25197055265d1c.tar.gz": ["https://github.com/bazelbuild/bazel-skylib/archive/f83cb8dd6f5658bc574ccd873e25197055265d1c.tar.gz"], | 
 |     }, | 
 | ) | 
 |  | 
 | # OpenJDK distributions used to create a version of Bazel bundled with the OpenJDK. | 
 | http_file( | 
 |     name = "openjdk_linux", | 
 |     downloaded_file_path = "zulu-linux.tar.gz", | 
 |     sha256 = "460d8a4f0c0204160b48086e341b22943c9cca471b195340e75b38ae9eb33c1c", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-linux_x64-allmodules-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209950.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_linux_vanilla", | 
 |     downloaded_file_path = "zulu-linux-vanilla.tar.gz", | 
 |     sha256 = "f3f44b6235508e87b760bf37a49e186cc1fa4e9cd28384c4dbf5a33991921e08", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_linux_minimal", | 
 |     downloaded_file_path = "zulu-linux-minimal.tar.gz", | 
 |     sha256 = "241cab34b1dc91afe39cad4173331e45bfaf3267dfb3db306a50fa68a988ed3f", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-linux_x64-minimal-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209948.tar.gz" | 
 |     ], | 
 | ) | 
 |  | 
 | # Used by CI to test Bazel on platforms without an installed system JDK. | 
 | # TODO(twerth): Migrate to @remotejdk when https://github.com/bazelbuild/bazel/pull/6216 is merged. | 
 | http_archive( | 
 |     name = "openjdk_linux_archive", | 
 |     build_file_content = "java_runtime(name = 'runtime', srcs =  glob(['**']), visibility = ['//visibility:public'])", | 
 |     sha256 = "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", | 
 |     strip_prefix = "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_macos", | 
 |     downloaded_file_path = "zulu-macos.tar.gz", | 
 |     sha256 = "8fa61d85ca6f657d646fdb50cfc8634987f8f7d8a3250ed39fb7364647633252", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-macosx_x64-allmodules-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209951.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_macos_vanilla", | 
 |     downloaded_file_path = "zulu-macos-vanilla.tar.gz", | 
 |     sha256 = "059f8e3484bf07b63a8f2820d5f528f473eff1befdb1896ee4f8ff06be3b8d8f", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-macosx_x64.zip", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_macos_minimal", | 
 |     downloaded_file_path = "zulu-macos-minimal.tar.gz", | 
 |     sha256 = "652ed5d12b1a68b20ba717ddd1acc1b09837ca95110f96924f1202f133027b7e", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-macosx_x64-minimal-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209947.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_win", | 
 |     downloaded_file_path = "zulu-win.zip", | 
 |     sha256 = "e6ddb361309f8e84eb5fb5ad8b0f5cc031ba3679910139262c31efd8f7579d05", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64-allmodules-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209972.zip", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_win_vanilla", | 
 |     downloaded_file_path = "zulu-win-vanilla.zip", | 
 |     sha256 = "e1f5b4ce1b9148140fae2fcfb8a96d1c9b7eac5b8df0e13fbcad9b8561284880", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64.zip", | 
 |     ], | 
 | ) | 
 |  | 
 | http_file( | 
 |     name = "openjdk_win_minimal", | 
 |     downloaded_file_path = "zulu-win-minimal.zip", | 
 |     sha256 = "00779c42fa1d1eee4e1eb7983327428087857ad5ee94f02581924eb47f368e50", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64-minimal-90755145cb6e6418584d8603cd5fa9afbb30aecc-1549209972.zip", | 
 |     ], | 
 | ) | 
 |  | 
 | # The source-code for this OpenJDK can be found at: | 
 | # https://openjdk.linaro.org/releases/jdk9-src-1708.tar.xz | 
 | http_file( | 
 |     name = "openjdk_linux_aarch64", | 
 |     sha256 = "72e7843902b0395e2d30e1e9ad2a5f05f36a4bc62529828bcbc698d54aec6022", | 
 |     urls = [ | 
 |         # When you update this, also update the link to the source-code above. | 
 |         "https://mirror.bazel.build/openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz", | 
 |         "http://openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_archive( | 
 |     name = "bazel_toolchains", | 
 |     sha256 = "109a99384f9d08f9e75136d218ebaebc68cc810c56897aea2224c57932052d30", | 
 |     strip_prefix = "bazel-toolchains-94d31935a2c94fe7e7c7379a0f3393e181928ff7", | 
 |     urls = [ | 
 |         "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/94d31935a2c94fe7e7c7379a0f3393e181928ff7.tar.gz", | 
 |         "https://github.com/bazelbuild/bazel-toolchains/archive/94d31935a2c94fe7e7c7379a0f3393e181928ff7.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | # We're pinning to a commit because this project does not have a recent release. | 
 | # Nothing special about this commit, though. | 
 | http_archive( | 
 |     name = "com_google_googletest", | 
 |     sha256 = "0fb00ff413f6b9b80ccee44a374ca7a18af7315aea72a43c62f2acd1ca74e9b5", | 
 |     strip_prefix = "googletest-f13bbe2992d188e834339abe6f715b2b2f840a77", | 
 |     urls = [ | 
 |         "https://github.com/google/googletest/archive/f13bbe2992d188e834339abe6f715b2b2f840a77.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_archive( | 
 |     name = "bazel_skylib", | 
 |     # Commit f83cb8dd6f5658bc574ccd873e25197055265d1c of 2018-11-26 | 
 |     sha256 = "ba5d15ca230efca96320085d8e4d58da826d1f81b444ef8afccd8b23e0799b52", | 
 |     strip_prefix = "bazel-skylib-f83cb8dd6f5658bc574ccd873e25197055265d1c", | 
 |     urls = [ | 
 |         "https://github.com/bazelbuild/bazel-skylib/archive/f83cb8dd6f5658bc574ccd873e25197055265d1c.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | http_archive( | 
 |     name = "skydoc", | 
 |     sha256 = "4db9fc4f5f69c220816c6d0b16e9956e7da2be8c85e83793661c0f4723e88d81", | 
 |     strip_prefix = "skydoc-7a08959b9d00c9ba592c1a1db145dffcf6c0b6bf", | 
 |     urls = [ | 
 |         "https://github.com/bazelbuild/skydoc/archive/7a08959b9d00c9ba592c1a1db145dffcf6c0b6bf.tar.gz", | 
 |     ], | 
 | ) | 
 |  | 
 | # For testing, have an distdir_tar with all the archives implicit in every | 
 | # WORKSPACE, to that they don't have to be refetched for every test | 
 | # calling `bazel sync`. | 
 | distdir_tar( | 
 |     name = "jdk_WORKSPACE_files", | 
 |     archives = [ | 
 |         "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", | 
 |         "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz", | 
 |         "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip", | 
 |         "jdk9-server-release-1708.tar.xz", | 
 |         "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz", | 
 |         "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz", | 
 |         "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip", | 
 |         "jdk10-server-release-1804.tar.xz", | 
 |         "java_tools_pkg-0.1.tar.gz", | 
 |         "zulu11.2.3-jdk11.0.1-linux_x64.tar.gz", | 
 |         "zulu11.2.3-jdk11.0.1-macosx_x64.tar.gz", | 
 |         "zulu11.2.3-jdk11.0.1-win_x64.zip", | 
 |         "zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz", | 
 |         "zulu11.29.3-ca-jdk11.0.2-macosx_x64.zip", | 
 |         "zulu11.29.3-ca-jdk11.0.2-win_x64.zip", | 
 |     ], | 
 |     dirname = "jdk_WORKSPACE/distdir", | 
 |     sha256 = { | 
 |         "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz": "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", | 
 |         "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz": "404e7058ff91f956612f47705efbee8e175a38b505fb1b52d8c1ea98718683de", | 
 |         "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip": "e738829017f107e7a7cd5069db979398ec3c3f03ef56122f89ba38e7374f63ed", | 
 |         "jdk9-server-release-1708.tar.xz": "72e7843902b0395e2d30e1e9ad2a5f05f36a4bc62529828bcbc698d54aec6022", | 
 |         "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz": "57fad3602e74c79587901d6966d3b54ef32cb811829a2552163185d5064fe9b5", | 
 |         "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz": "e669c9a897413d855b550b4e39d79614392e6fb96f494e8ef99a34297d9d85d3", | 
 |         "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip": "c39e7700a8d41794d60985df5a20352435196e78ecbc6a2b30df7be8637bffd5", | 
 |         "jdk10-server-release-1804.tar.xz": "b7098b7aaf6ee1ffd4a2d0371a0be26c5a5c87f6aebbe46fe9a92c90583a84be", | 
 |         "java_tools_pkg-0.1.tar.gz": "df33ddb3054f0ee70389368bd1dc2efe72eeb1f489dbcdf948f3f3b3058646b7", | 
 |         "zulu11.2.3-jdk11.0.1-linux_x64.tar.gz": "232b1c3511f0d26e92582b7c3cc363be7ac633e371854ca2f2e9f2b50eb72a75", | 
 |         "zulu11.2.3-jdk11.0.1-macosx_x64.tar.gz": "1edf366ee821e5db8e348152fcb337b28dfd6bf0f97943c270dcc6747cedb6cb", | 
 |         "zulu11.2.3-jdk11.0.1-win_x64.zip": "8e1e2b8347de6746f3fd1538840dd643201533ab113abc4ed93678e342d28aa3", | 
 |         "zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz": "f3f44b6235508e87b760bf37a49e186cc1fa4e9cd28384c4dbf5a33991921e08", | 
 |         "zulu11.29.3-ca-jdk11.0.2-macosx_x64.zip": "059f8e3484bf07b63a8f2820d5f528f473eff1befdb1896ee4f8ff06be3b8d8f", | 
 |         "zulu11.29.3-ca-jdk11.0.2-win_x64.zip": "e1f5b4ce1b9148140fae2fcfb8a96d1c9b7eac5b8df0e13fbcad9b8561284880", | 
 |     }, | 
 |     urls = { | 
 |         "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz"], | 
 |         "zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz"], | 
 |         "zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip": ["https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip"], | 
 |         "jdk9-server-release-1708.tar.xz": ["https://mirror.bazel.build/openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz"], | 
 |         "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz"], | 
 |         "zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-macosx_x64-allmodules.tar.gz"], | 
 |         "zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip": ["https://mirror.bazel.build/openjdk/azul-zulu10.2+3-jdk10.0.1/zulu10.2+3-jdk10.0.1-win_x64-allmodules.zip"], | 
 |         "jdk10-server-release-1804.tar.xz": ["https://mirror.bazel.build/openjdk.linaro.org/releases/jdk10-server-release-1804.tar.xz"], | 
 |         "java_tools_pkg-0.1.tar.gz": ["https://mirror.bazel.build/bazel_java_tools/java_tools_pkg-0.1.tar.gz"], | 
 |         "zulu11.2.3-jdk11.0.1-linux_x64.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu11.2.3-jdk11.0.1/zulu11.2.3-jdk11.0.1-linux_x64.tar.gz"], | 
 |         "zulu11.2.3-jdk11.0.1-macosx_x64.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu11.2.3-jdk11.0.1/zulu11.2.3-jdk11.0.1-macosx_x64.tar.gz"], | 
 |         "zulu11.2.3-jdk11.0.1-win_x64.zip": ["https://mirror.bazel.build/openjdk/azul-zulu11.2.3-jdk11.0.1/zulu11.2.3-jdk11.0.1-win_x64.zip"], | 
 |         "zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz": ["https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz"], | 
 |         "zulu11.29.3-ca-jdk11.0.2-macosx_x64.zip": ["https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-macosx_x64.zip"], | 
 |         "zulu11.29.3-ca-jdk11.0.2-win_x64.zip": ["https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64.zip"], | 
 |     }, | 
 | ) | 
 |  | 
 | load("//scripts/docs:doc_versions.bzl", "DOC_VERSIONS") | 
 |  | 
 | [http_file( | 
 |     name = "jekyll_tree_%s" % DOC_VERSION["version"].replace(".", "_"), | 
 |     sha256 = DOC_VERSION["sha256"], | 
 |     urls = ["https://mirror.bazel.build/bazel_versioned_docs/jekyll-tree-%s.tar" % DOC_VERSION["version"]], | 
 | ) for DOC_VERSION in DOC_VERSIONS] |