mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 18:32:28 +02:00
33 lines
715 B
Python
33 lines
715 B
Python
SRC = 'src/main/java/org/onosproject/security/**/'
|
|
TEST = 'src/test/java/org/onosproject/security/**/'
|
|
CURRENT_NAME = 'onos-security'
|
|
CURRENT_TARGET = ':' + CURRENT_NAME
|
|
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:KRYO',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//lib:org.apache.felix.framework.security',
|
|
'//core/api:onos-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-security',
|
|
srcs = glob([SRC + '/*.java']),
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_test(
|
|
name = 'tests',
|
|
srcs = glob([TEST + '/*.java']),
|
|
deps = COMPILE_DEPS +
|
|
TEST_DEPS +
|
|
[CURRENT_TARGET],
|
|
) |