forked from protocolbuffers/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
62 lines (49 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
workspace(name = "com_google_protobuf")
local_repository(
name = "com_google_protobuf_examples",
path = "examples",
)
local_repository(
name = "submodule_gmock",
path = "third_party/googletest",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//:protobuf_deps.bzl", "protobuf_deps")
# Load common dependencies.
protobuf_deps()
bind(
name = "python_headers",
actual = "//util/python:python_headers",
)
bind(
name = "gtest",
actual = "@submodule_gmock//:gtest",
)
bind(
name = "gtest_main",
actual = "@submodule_gmock//:gtest_main",
)
maven_jar(
name = "guava_maven",
artifact = "com.google.guava:guava:18.0",
)
bind(
name = "guava",
actual = "@guava_maven//jar",
)
maven_jar(
name = "gson_maven",
artifact = "com.google.code.gson:gson:2.7",
)
bind(
name = "gson",
actual = "@gson_maven//jar",
)
maven_jar(
name = "error_prone_annotations_maven",
artifact = "com.google.errorprone:error_prone_annotations:2.3.2",
)
bind(
name = "error_prone_annotations",
actual = "@error_prone_annotations_maven//jar",
)