|
5 | 5 | # Bazel (http://bazel.build/) WORKSPACE file for RE2.
|
6 | 6 |
|
7 | 7 | workspace(name = "com_googlesource_code_re2")
|
8 |
| - |
9 |
| -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
10 |
| - |
11 |
| -http_archive( |
12 |
| - name = "com_google_absl", |
13 |
| - strip_prefix = "abseil-cpp-master", |
14 |
| - urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"], |
15 |
| -) |
16 |
| - |
17 |
| -http_archive( |
18 |
| - name = "bazel_skylib", |
19 |
| - strip_prefix = "bazel-skylib-main", |
20 |
| - urls = ["https://github.com/bazelbuild/bazel-skylib/archive/main.zip"], |
21 |
| -) |
22 |
| - |
23 |
| -http_archive( |
24 |
| - name = "com_github_google_benchmark", |
25 |
| - strip_prefix = "benchmark-main", |
26 |
| - urls = ["https://github.com/google/benchmark/archive/main.zip"], |
27 |
| -) |
28 |
| - |
29 |
| -http_archive( |
30 |
| - name = "com_google_googletest", |
31 |
| - strip_prefix = "googletest-main", |
32 |
| - urls = ["https://github.com/google/googletest/archive/main.zip"], |
33 |
| -) |
34 |
| - |
35 |
| -http_archive( |
36 |
| - name = "rules_python", |
37 |
| - strip_prefix = "rules_python-main", |
38 |
| - urls = ["https://github.com/bazelbuild/rules_python/archive/main.zip"], |
39 |
| -) |
40 |
| - |
41 |
| -http_archive( |
42 |
| - name = "io_abseil_py", |
43 |
| - strip_prefix = "abseil-py-main", |
44 |
| - urls = ["https://github.com/abseil/abseil-py/archive/main.zip"], |
45 |
| -) |
46 |
| - |
47 |
| -http_archive( |
48 |
| - name = "pybind11_bazel", |
49 |
| - strip_prefix = "pybind11_bazel-master", |
50 |
| - urls = ["https://github.com/pybind/pybind11_bazel/archive/master.zip"], |
51 |
| -) |
52 |
| - |
53 |
| -http_archive( |
54 |
| - name = "pybind11", |
55 |
| - build_file = "@pybind11_bazel//:pybind11.BUILD", |
56 |
| - strip_prefix = "pybind11-master", |
57 |
| - urls = ["https://github.com/pybind/pybind11/archive/master.zip"], |
58 |
| -) |
59 |
| - |
60 |
| -load("@pybind11_bazel//:python_configure.bzl", "python_configure") |
61 |
| - |
62 |
| -python_configure( |
63 |
| - name = "local_config_python", |
64 |
| - python_version = "3", |
65 |
| -) |
0 commit comments