1 Star 0 Fork 0

yuncai_shenzhen/re2

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
WORKSPACE 1.58 KB
Copy Edit Raw Blame History
# Copyright 2009 The RE2 Authors. All Rights Reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# Bazel (http://bazel.io/) WORKSPACE file for RE2.
workspace(name = "com_googlesource_code_re2")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_cc",
strip_prefix = "rules_cc-main",
urls = ["https://github.com/bazelbuild/rules_cc/archive/main.zip"],
)
http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-master",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
)
http_archive(
name = "com_github_google_benchmark",
strip_prefix = "benchmark-master",
urls = ["https://github.com/google/benchmark/archive/master.zip"],
)
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-master",
urls = ["https://github.com/google/googletest/archive/master.zip"],
)
http_archive(
name = "rules_python",
strip_prefix = "rules_python-main",
urls = ["https://github.com/bazelbuild/rules_python/archive/main.zip"],
)
http_archive(
name = "io_abseil_py",
strip_prefix = "abseil-py-master",
urls = ["https://github.com/abseil/abseil-py/archive/master.zip"],
)
# RE2 doesn't depend on this anymore, but Abseil Python still does.
# We should be able to delete this when their six.BUILD is deleted.
http_archive(
name = "six_archive",
build_file = "@io_abseil_py//third_party:six.BUILD",
strip_prefix = "six-master",
urls = ["https://github.com/benjaminp/six/archive/master.zip"],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuncaicheng/re2.git
git@gitee.com:yuncaicheng/re2.git
yuncaicheng
re2
re2
abseil

Search