forked from bazelment/trunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
116 lines (95 loc) · 2.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
bind(
name = "libssl",
actual = "//third_party/boringssl:boringssl",
)
# Protobuf compiler binary
bind(
name = "protoc",
actual = "//third_party/protobuf:protoc"
)
# Library needed to build protobuf codegen plugin.
bind(
name = "protobuf_compiler",
actual = "//third_party/protobuf:protoc_lib",
)
# Library that C++ code generated by protobuf C compiler should depend
# on.
bind(
name = "protobuf_clib",
actual = "//third_party/protobuf:proto_lib",
)
bind(
name = "protobuf_java_lib",
actual = "//third_party/protobuf:java_proto",
)
# GRPC codegen plugin
bind(
name = "grpc_cpp_plugin",
actual = "//third_party/grpc/upstream:grpc_cpp_plugin"
)
# GRPC C++ runtime library
bind(
name = "grpc++",
actual = "//third_party/grpc/upstream:grpc++"
)
bind(
name = "apache-commons-logging",
actual = "//third_party/java/commons-logging"
)
bind(
name = "apache-log4j",
actual = "//third_party/java/log4j"
)
maven_jar(
name = "hpack-maven",
artifact = "com.twitter:hpack:v1.0.1"
)
bind(
name = "hpack",
actual = "@hpack-maven//jar"
)
bind(
name = "javassist",
actual = "//third_party/java/javassist",
)
maven_jar(
name = "jetty-alpn-maven",
artifact = "org.eclipse.jetty.alpn:alpn-api:1.1.2.v20150522"
)
bind(
name = "jetty-alpn",
actual = "@jetty-alpn-maven//jar"
)
maven_jar(
name = "jetty-npn-maven",
artifact = "org.mortbay.jetty.npn:npn-boot:1.1.11.v20150415"
)
bind(
name = "jetty-npn",
actual = "@jetty-npn-maven//jar"
)
maven_jar(
name = "jzlib-maven",
artifact = "com.jcraft:jzlib:1.1.3"
)
bind(
name = "jzlib",
actual = "@jzlib-maven//jar"
)
maven_jar(
name = "netty-tcnative-maven",
artifact = "io.netty:netty-tcnative:1.1.33.Fork2"
)
bind(
name = "netty-tcnative",
actual = "@netty-tcnative-maven//jar"
)
bind(
name = "slf4j",
actual = "//third_party/java/slf4j"
)
# Disable loading of any android depenedency rule
bind(name = "android/aar_generator")
bind(name = "android/incremental_split_stub_application")
bind(name = "android/incremental_stub_application")
bind(name = "android/resources_processor")