forked from lizan/service-control-client-cxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
86 lines (71 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# A Bazel (http://bazel.io) workspace for the Google Service Control client
new_git_repository(
name = "googletest_git",
build_file = "third_party/BUILD.googletest",
commit = "13206d6f53aaff844f2d3595a01ac83a29e383db",
remote = "https://github.com/google/googletest.git",
)
bind(
name = "googletest",
actual = "@googletest_git//:googletest",
)
bind(
name = "googletest_main",
actual = "@googletest_git//:googletest_main",
)
git_repository(
name = "boringssl",
commit = "2f29d38cc5e6c1bfae4ce22b4b032fb899cdb705", # 2016-07-12
remote = "https://boringssl.googlesource.com/boringssl",
)
bind(
name = "boringssl_crypto",
actual = "@boringssl//:crypto",
)
git_repository(
name = "protobuf_git",
commit = "56855f6f002eeee8cf03021eaf2ece2adff2a297", # 3.0.0-beta-4
remote = "https://github.com/google/protobuf.git",
)
bind(
name = "protoc",
actual = "@protobuf_git//:protoc",
)
bind(
name = "protobuf",
actual = "@protobuf_git//:protobuf",
)
bind(
name = "cc_wkt_protos",
actual = "@protobuf_git//:cc_wkt_protos",
)
bind(
name = "cc_wkt_protos_genproto",
actual = "@protobuf_git//:cc_wkt_protos_genproto",
)
new_git_repository(
name = "googleapis_git",
commit = "6c1d6d4067364a21f8ffefa3401b213d652bf121", # common-protos-1_3_1
remote = "https://github.com/googleapis/googleapis.git",
build_file = "third_party/BUILD.googleapis",
)
bind(
name = "servicecontrol",
actual = "@googleapis_git//:servicecontrol",
)
bind(
name = "service_config",
actual = "@googleapis_git//:service_config",
)