mirror of
				https://github.com/opennetworkinglab/onos.git
				synced 2025-10-31 00:01:01 +01:00 
			
		
		
		
	The advantage is that we don't have to carry over the driver all required gRPC and P4Runtime bundles. Each module is now responsible for bringing in its own runtime dependencies. Change-Id: Icb1365e68d486f12fb1e25dc5d3937f42e3e1c62
		
			
				
	
	
		
			17 lines
		
	
	
		
			376 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			376 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| PROTOBUF_VER = '3.0.2'
 | |
| GRPC_VER = '1.3.0'
 | |
| 
 | |
| COMPILE_DEPS = [
 | |
|     '//lib:CORE_DEPS',
 | |
|     '//protocols/grpc/api:onos-protocols-grpc-api',
 | |
|     '//protocols/grpc/proto:onos-protocols-grpc-proto',
 | |
|     '//incubator/grpc-dependencies:grpc-core-repkg-' + GRPC_VER,
 | |
|     '//lib:grpc-stub-' + GRPC_VER,
 | |
|     '//lib:protobuf-java-' + PROTOBUF_VER,
 | |
| ]
 | |
| 
 | |
| osgi_jar (
 | |
|     deps = COMPILE_DEPS,
 | |
| )
 | |
| 
 |