blob: 7c91c47f4305ead018b88a0a32ea8f9548cea302 [file] [log] [blame]
Andrea Campanella8bcd5862017-12-11 11:34:45 +01001PROTOBUF_VER = '3.2.0'
Carmelo Casconedda88d02017-07-19 22:42:01 -04002GRPC_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',
Andrea Campanella8bcd5862017-12-11 11:34:45 +010016 '//lib:protobuf-java-3.2.0',
Carmelo Casconedda88d02017-07-19 22:42:01 -040017 # 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)