Kristina Chodorow | 93fbc3e | 2016-04-27 17:03:28 +0000 | [diff] [blame] | 1 | workspace(name = "io_bazel") |
| 2 | |
David Chen | b78bbd5 | 2016-03-16 13:17:57 +0000 | [diff] [blame] | 3 | # Protobuf expects an //external:python_headers label which would contain the |
| 4 | # Python headers if fast Python protos is enabled. Since we are not using fast |
| 5 | # Python protos, bind python_headers to a dummy target. |
| 6 | bind( |
| 7 | name = "python_headers", |
| 8 | actual = "//:dummy", |
| 9 | ) |
| 10 | |
Alpha Lam | a1a79cb | 2016-05-15 19:13:52 +0000 | [diff] [blame] | 11 | # Protobuf code generation for GRPC requires three external labels: |
| 12 | # //external:grpc-java_plugin |
| 13 | # //external:grpc-jar |
| 14 | # //external:guava |
| 15 | bind( |
| 16 | name = "grpc-java-plugin", |
| 17 | actual = "//third_party/grpc:grpc-java-plugin", |
| 18 | ) |
| 19 | |
| 20 | bind( |
| 21 | name = "grpc-jar", |
| 22 | actual = "//third_party/grpc:grpc-jar", |
| 23 | ) |
| 24 | |
| 25 | bind( |
| 26 | name = "guava", |
| 27 | actual = "//third_party:guava", |
| 28 | ) |
| 29 | |
Jakob Buchgraber | 6e12e65 | 2017-05-02 11:53:15 +0200 | [diff] [blame] | 30 | # Used by //third_party/protobuf:protobuf_python |
| 31 | bind( |
| 32 | name = "six", |
| 33 | actual = "//third_party/py/six", |
| 34 | ) |
| 35 | |
Googler | 5b90b16 | 2017-08-31 16:29:34 +0200 | [diff] [blame] | 36 | http_archive( |
| 37 | name = "bazel_j2objc", |
| 38 | url = "https://github.com/google/j2objc/releases/download/2.0.3/j2objc-2.0.3.zip", |
Laszlo Csomor | 0f3f788 | 2018-03-13 06:56:12 -0700 | [diff] [blame] | 39 | # Computed using "shasum -a 256 j2objc-2.0.3.zip" |
| 40 | sha256 = "a36bac432d0dbd8c98249e484b2b69dd5720afa4abb58711a3c3def1c0bfa21d", |
Googler | 5b90b16 | 2017-08-31 16:29:34 +0200 | [diff] [blame] | 41 | strip_prefix = "j2objc-2.0.3", |
| 42 | ) |
| 43 | |
Damien Martin-Guillerez | 0baff0f | 2017-08-22 17:40:37 +0200 | [diff] [blame] | 44 | # For src/test/shell/bazel:test_srcs |
| 45 | load("//src/test/shell/bazel:list_source_repository.bzl", "list_source_repository") |
| 46 | list_source_repository(name = "local_bazel_source_list") |
| 47 | |
Adam Michael | 9b7330f | 2017-03-23 18:40:51 +0000 | [diff] [blame] | 48 | # To run the Android integration tests in //src/test/shell/bazel/android:all or |
| 49 | # build the Android sample app in //examples/android/java/bazel:hello_world |
| 50 | # |
| 51 | # 1. Install an Android SDK and NDK from https://developer.android.com |
| 52 | # 2. Set the $ANDROID_HOME and $ANDROID_NDK_HOME environment variables |
| 53 | # 3. Uncomment the two lines below |
| 54 | # |
| 55 | # android_sdk_repository(name = "androidsdk") |
| 56 | # android_ndk_repository(name = "androidndk") |
Cal Peyser | 2152bc1 | 2016-04-22 17:08:59 +0000 | [diff] [blame] | 57 | |
Adam Michael | 8a136d8 | 2016-11-16 23:04:46 +0000 | [diff] [blame] | 58 | # In order to run //src/test/shell/bazel:maven_skylark_test, follow the |
| 59 | # instructions above for the Android integration tests and uncomment the |
| 60 | # following lines: |
| 61 | # load("//tools/build_defs/repo:maven_rules.bzl", "maven_dependency_plugin") |
| 62 | # maven_dependency_plugin() |
| 63 | |
Cal Peyser | 2152bc1 | 2016-04-22 17:08:59 +0000 | [diff] [blame] | 64 | # This allows rules written in skylark to locate apple build tools. |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 65 | bind( |
| 66 | name = "xcrunwrapper", |
| 67 | actual = "@bazel_tools//tools/objc:xcrunwrapper", |
| 68 | ) |
Carmi Grushko | bfaff29 | 2016-08-17 18:37:55 +0000 | [diff] [blame] | 69 | |
Jakob Buchgraber | 8ff0d0d | 2017-04-14 21:16:19 +0200 | [diff] [blame] | 70 | new_local_repository( |
Carmi Grushko | 0fd73d6 | 2017-02-17 06:49:40 +0000 | [diff] [blame] | 71 | name = "com_google_protobuf", |
Loo Rong Jie | 0399f38 | 2018-07-10 03:08:36 -0700 | [diff] [blame] | 72 | build_file = "./third_party/protobuf/3.6.0/BUILD", |
| 73 | path = "./third_party/protobuf/3.6.0/", |
Carmi Grushko | 0fd73d6 | 2017-02-17 06:49:40 +0000 | [diff] [blame] | 74 | ) |
| 75 | |
| 76 | new_local_repository( |
kmb | f6b8d5e | 2017-10-12 01:21:26 +0200 | [diff] [blame] | 77 | name = "com_google_protobuf_cc", |
Loo Rong Jie | 0399f38 | 2018-07-10 03:08:36 -0700 | [diff] [blame] | 78 | build_file = "./third_party/protobuf/3.6.0/BUILD", |
| 79 | path = "./third_party/protobuf/3.6.0/", |
kmb | f6b8d5e | 2017-10-12 01:21:26 +0200 | [diff] [blame] | 80 | ) |
| 81 | |
| 82 | new_local_repository( |
Carmi Grushko | f1aa34c | 2016-11-29 01:04:35 +0000 | [diff] [blame] | 83 | name = "com_google_protobuf_java", |
Loo Rong Jie | 0399f38 | 2018-07-10 03:08:36 -0700 | [diff] [blame] | 84 | build_file = "./third_party/protobuf/3.6.0/com_google_protobuf_java.BUILD", |
| 85 | path = "./third_party/protobuf/3.6.0/", |
Carmi Grushko | f1aa34c | 2016-11-29 01:04:35 +0000 | [diff] [blame] | 86 | ) |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 87 | |
Jakob Buchgraber | 166f28c | 2017-05-30 16:41:18 +0200 | [diff] [blame] | 88 | new_local_repository( |
| 89 | name = "googleapis", |
| 90 | path = "./third_party/googleapis/", |
| 91 | build_file = "./third_party/googleapis/BUILD", |
| 92 | ) |
| 93 | |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 94 | http_archive( |
| 95 | name = "desugar_jdk_libs", |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 96 | url = "https://github.com/google/desugar_jdk_libs/archive/fd937f4180c1b557805219af4482f1a27eb0ff2b.zip", |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 97 | # Computed using "shasum -a 256 <zip>" |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 98 | sha256 = "43b8fcc56a180e178d498f375fbeb95e8b65b9bf6c2da91ae3ae0332521a1a12", |
| 99 | strip_prefix = "desugar_jdk_libs-fd937f4180c1b557805219af4482f1a27eb0ff2b", |
kmb | bfd89d6 | 2018-04-11 14:26:56 -0700 | [diff] [blame] | 100 | ) |
| 101 | |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 102 | load("//:distdir.bzl", "distdir_tar") |
| 103 | distdir_tar( |
| 104 | name = "additional_distfiles", |
| 105 | dirname = "derived/distdir", |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 106 | archives = ["fd937f4180c1b557805219af4482f1a27eb0ff2b.zip"], |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 107 | urls = { |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 108 | "fd937f4180c1b557805219af4482f1a27eb0ff2b.zip" : |
| 109 | ["https://github.com/google/desugar_jdk_libs/archive/fd937f4180c1b557805219af4482f1a27eb0ff2b.zip"], |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 110 | }, |
| 111 | sha256 = { |
kmb | b6da3b1 | 2018-07-03 12:36:21 -0700 | [diff] [blame] | 112 | "fd937f4180c1b557805219af4482f1a27eb0ff2b.zip" : |
| 113 | "43b8fcc56a180e178d498f375fbeb95e8b65b9bf6c2da91ae3ae0332521a1a12", |
Klaus Aehlig | 3c9cd82 | 2018-05-24 03:35:42 -0700 | [diff] [blame] | 114 | }, |
| 115 | ) |
| 116 | |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 117 | # OpenJDK distributions used to create a version of Bazel bundled with the OpenJDK. |
| 118 | http_file( |
| 119 | name = "openjdk_linux", |
buchgr | 4c9a0c8 | 2018-07-02 07:32:26 -0700 | [diff] [blame] | 120 | sha256 = "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 121 | urls = [ |
buchgr | 4c9a0c8 | 2018-07-02 07:32:26 -0700 | [diff] [blame] | 122 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 123 | ], |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 124 | ) |
| 125 | |
| 126 | http_file( |
| 127 | name = "openjdk_macos", |
buchgr | 68e92b4 | 2018-07-09 11:18:42 -0700 | [diff] [blame] | 128 | sha256 = "404e7058ff91f956612f47705efbee8e175a38b505fb1b52d8c1ea98718683de", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 129 | urls = [ |
buchgr | 909bd08 | 2018-07-23 06:03:32 -0700 | [diff] [blame] | 130 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-macosx_x64-allmodules.tar.gz", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 131 | ], |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 132 | ) |
| 133 | |
| 134 | http_file( |
| 135 | name = "openjdk_win", |
buchgr | 4c9a0c8 | 2018-07-02 07:32:26 -0700 | [diff] [blame] | 136 | sha256 = "e738829017f107e7a7cd5069db979398ec3c3f03ef56122f89ba38e7374f63ed", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 137 | urls = [ |
buchgr | 4c9a0c8 | 2018-07-02 07:32:26 -0700 | [diff] [blame] | 138 | "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-win_x64-allmodules.zip", |
philwo | 915fa8f | 2017-05-09 12:17:12 -0400 | [diff] [blame] | 139 | ], |
Philipp Wollermann | 9504827 | 2017-03-17 15:11:58 +0000 | [diff] [blame] | 140 | ) |
Googler | 5f36bf8 | 2017-07-12 20:43:08 +0200 | [diff] [blame] | 141 | |
| 142 | http_archive( |
buchgr | d34f306 | 2018-05-22 06:19:10 -0700 | [diff] [blame] | 143 | name = "bazel_toolchains", |
| 144 | urls = [ |
hlopko | 13e4d7f | 2018-07-06 10:21:23 -0700 | [diff] [blame] | 145 | "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/e76b1031eba14c16d72f5837ae7cb7630a2322e2.tar.gz", |
| 146 | "https://github.com/bazelbuild/bazel-toolchains/archive/e76b1031eba14c16d72f5837ae7cb7630a2322e2.tar.gz", |
buchgr | d34f306 | 2018-05-22 06:19:10 -0700 | [diff] [blame] | 147 | ], |
hlopko | 13e4d7f | 2018-07-06 10:21:23 -0700 | [diff] [blame] | 148 | strip_prefix = "bazel-toolchains-e76b1031eba14c16d72f5837ae7cb7630a2322e2", |
| 149 | sha256 = "259ec05a457bc93aec2aee7e4e67fb4bc1724a183b67baaf5dd6a08be6d6a84a", |
Googler | 5f36bf8 | 2017-07-12 20:43:08 +0200 | [diff] [blame] | 150 | ) |
ccalvarin | 1cbe62a | 2017-08-14 21:09:07 +0200 | [diff] [blame] | 151 | |
ccalvarin | 7383976 | 2018-03-23 15:35:00 -0700 | [diff] [blame] | 152 | # We're pinning to a commit because this project does not have a recent release. |
| 153 | # Nothing special about this commit, though. |
ccalvarin | 8e9f4a8 | 2018-03-23 08:19:37 -0700 | [diff] [blame] | 154 | http_archive( |
| 155 | name = "com_google_googletest", |
| 156 | urls = [ |
| 157 | "https://github.com/google/googletest/archive/dfa853b63d17c787914b663b50c2095a0c5b706e.tar.gz", |
| 158 | ], |
| 159 | strip_prefix = "googletest-dfa853b63d17c787914b663b50c2095a0c5b706e", |
| 160 | sha256 = "313a16fba8f0be8ee20ba9883e044556044cbd1ae6cea532473d163a843ef991", |
| 161 | ) |
| 162 | |
Xin Gao | c439ae1 | 2017-11-07 19:05:31 +0100 | [diff] [blame] | 163 | # For src/test/shell/bazel:bazel_sandboxing_test |
| 164 | http_file( |
| 165 | name = 'mount_path_toolchain', |
| 166 | url = 'https://asci-toolchain.appspot.com.storage.googleapis.com/toolchain-testing/mount_path_toolchain.tar.gz', |
Klaus Aehlig | 6ed275b | 2018-06-12 05:36:53 -0700 | [diff] [blame] | 167 | sha256 = "dd8088d3543a86fd91a9ccde6e40102aff6eaf3d048aa73cc18eff05cc2053d5", |
Xin Gao | c439ae1 | 2017-11-07 19:05:31 +0100 | [diff] [blame] | 168 | ) |