mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
18 lines
360 B
Python
18 lines
360 B
Python
SRC = 'src/main/java/org/onosproject/**/'
|
|
|
|
CURRENT_NAME = 'onos-restsb-api'
|
|
CURRENT_TARGET = ':' + CURRENT_NAME
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
java_library(
|
|
name = CURRENT_NAME,
|
|
srcs = glob([SRC + '/*.java']),
|
|
deps = COMPILE_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|