Change log:c92ed25217..bcf2616e8eFull diff:c92ed25217..bcf2616e8eRoll chromium third_party 51c08cf9af..9d65a3cdda Change log:51c08cf9af..9d65a3cddaChanged dependencies: * src/base:a7a2409f9b..b802985ef4* src/build:03f39fd800..fc8308f6b6* src/buildtools:a9e946f166..94288c26d2* src/ios:e070a93062..289c450460* src/testing:f5b31b58c6..a5fce03148* src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/d8600ccc2d..ce9b3742a1 * src/third_party/depot_tools:8de3800ce5..8fe4d8cbef* src/third_party/googletest/src:045e7f9ee4..08d5b1f33a* src/tools:e024720629..6e6e398687* src/tools/swarming_client:88229872dd..833f5ebf89DEPS diff:c92ed25217..bcf2616e8e/DEPS No update to Clang. TBR=buildbot@webrtc.org, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Change-Id: I22bf301fcec0103a1987a92f95ebf86e324dade7 Reviewed-on: https://webrtc-review.googlesource.com/77625 Reviewed-by: WebRTC Buildbot <buildbot@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23296}
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
workspace(name = "com_google_absl")
|
|
# Bazel toolchains
|
|
http_archive(
|
|
name = "bazel_toolchains",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/f8847f64e6950e8ab9fde1c0aba768550b0d9ab2.tar.gz",
|
|
"https://github.com/bazelbuild/bazel-toolchains/archive/f8847f64e6950e8ab9fde1c0aba768550b0d9ab2.tar.gz",
|
|
],
|
|
strip_prefix = "bazel-toolchains-f8847f64e6950e8ab9fde1c0aba768550b0d9ab2",
|
|
sha256 = "794366f51fea224b3656a0b0f8f1518e739748646523a572fcd3d68614a0e670",
|
|
)
|
|
|
|
# GoogleTest/GoogleMock framework. Used by most unit-tests.
|
|
http_archive(
|
|
name = "com_google_googletest",
|
|
urls = ["https://github.com/google/googletest/archive/master.zip"],
|
|
strip_prefix = "googletest-master",
|
|
)
|
|
|
|
# Google benchmark.
|
|
http_archive(
|
|
name = "com_github_google_benchmark",
|
|
urls = ["https://github.com/google/benchmark/archive/master.zip"],
|
|
strip_prefix = "benchmark-master",
|
|
)
|
|
|
|
# RE2 regular-expression framework. Used by some unit-tests.
|
|
http_archive(
|
|
name = "com_googlesource_code_re2",
|
|
urls = ["https://github.com/google/re2/archive/master.zip"],
|
|
strip_prefix = "re2-master",
|
|
)
|