blob: 3422455b5a36c96dd3ec8896864df013008a218c [file] [log] [blame]
Aaron Kruglikove630fb12017-04-24 13:05:26 -07001
2COMPILE_DEPS = [
3 '//lib:CORE_DEPS',
4 ':onos-incubator-grpc',
5 '//lib:protobuf-java-3.2.0',
6]
7
8GRPC_DEPS = [
9 '//lib:GRPC_1.3',
10 '//lib:protobuf-java-3.2.0',
11 '//lib:guava'
12]
13
14grpc_jar(
15 name = 'onos-incubator-grpc',
16 deps = GRPC_DEPS,
17 proto_paths = ["$ONOS_ROOT/incubator/protobuf/src/main/proto"]
18)
19
20osgi_jar_with_tests(
21 deps = COMPILE_DEPS,
22 visibility = ['PUBLIC'],
23)
24
25