blob: bcd74a5731f1357754967797fddd8187f9f4345f [file] [log] [blame]
Carmelo Casconedda88d02017-07-19 22:42:01 -04001PROTOBUF_VER = '3.0.2'
2GRPC_VER = '1.3.0'
3
4BUNDLES = [
5 '//protocols/grpc/proto:onos-protocols-grpc-proto',
6 '//protocols/grpc/api:onos-protocols-grpc-api',
7 '//protocols/grpc/ctl:onos-protocols-grpc-ctl',
8 # gRPC dependencies
9 '//incubator/grpc-dependencies:grpc-core-repkg-1.3.0',
10 '//lib:grpc-protobuf-1.3.0',
11 '//lib:grpc-protobuf-lite-1.3.0',
12 '//lib:grpc-stub-1.3.0',
13 '//lib:grpc-netty-1.3.0',
14 '//lib:grpc-auth-1.3.0',
15 '//lib:google-instrumentation-0.3.0',
16 '//lib:protobuf-java-3.0.2',
17 # Lazily adding all netty-related packages.
18 # Some of them might not be necessary.
19 '//lib:netty',
20 '//lib:netty-buffer',
21 '//lib:netty-codec',
22 '//lib:netty-codec-http',
23 '//lib:netty-codec-http2',
24 '//lib:netty-common',
25 '//lib:netty-handler',
26 '//lib:netty-transport',
27 '//lib:netty-transport-native-epoll',
28 '//lib:netty-resolver',
29]
30
31onos_app (
32 app_name = 'org.onosproject.protocols.grpc',
33 title = 'gRPC Protocol Subsystem',
Thomas Vachuska1251e632017-07-31 15:03:40 -070034 category = 'Protocol',
Carmelo Casconedda88d02017-07-19 22:42:01 -040035 url = 'http://onosproject.org',
Thomas Vachuskac98aa2a2017-08-28 10:47:48 -070036 description = 'Exposes APIs to setup, manage and teardown gRPC Managed channels with devices. ' +
37 'Also offers channel observer registration and removal capabilities. ' +
38 'The exposed APis abstract low level channel operations.',
Carmelo Casconedda88d02017-07-19 22:42:01 -040039 included_bundles = BUNDLES,
40)