-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
34 lines (25 loc) · 883 Bytes
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
workspace(name = "org_cloudabi_arpc")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "org_cloudabi_argdata",
commit = "9da87f137386b85e59e9ff149913c0ea519c7986",
remote = "https://github.com/NuxiNL/argdata.git",
)
git_repository(
name = "com_google_googletest",
commit = "150613166524c474a8a97df4c01d46b72050c495",
remote = "https://github.com/google/googletest.git",
)
git_repository(
name = "io_bazel_rules_python",
commit = "e6399b601e2f72f74e5aa635993d69166784dde1",
remote = "https://github.com/bazelbuild/rules_python.git",
)
load("@io_bazel_rules_python//python:pip.bzl", "pip_import", "pip_repositories")
pip_repositories()
pip_import(
name = "aprotoc_deps",
requirements = "//scripts:requirements.txt",
)
load("@aprotoc_deps//:requirements.bzl", "pip_install")
pip_install()