Carmelo Cascone | dda88d0 | 2017-07-19 22:42:01 -0400 | [diff] [blame] | 1 | PROTOBUF_VER = '3.0.2' |
| 2 | GRPC_VER = '1.3.0' |
| 3 | |
| 4 | BUNDLES = [ |
| 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 | |
| 31 | onos_app ( |
| 32 | app_name = 'org.onosproject.protocols.grpc', |
| 33 | title = 'gRPC Protocol Subsystem', |
Thomas Vachuska | 1251e63 | 2017-07-31 15:03:40 -0700 | [diff] [blame] | 34 | category = 'Protocol', |
Carmelo Cascone | dda88d0 | 2017-07-19 22:42:01 -0400 | [diff] [blame] | 35 | url = 'http://onosproject.org', |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 36 | 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 Cascone | dda88d0 | 2017-07-19 22:42:01 -0400 | [diff] [blame] | 39 | included_bundles = BUNDLES, |
| 40 | ) |