mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-15 14:21:29 +01:00
24 lines
620 B
Python
24 lines
620 B
Python
include_defs('//apps/openstacknetworking/openstack4j.bucklet')
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api',
|
|
'//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//core/common:onos-core-common-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
|
|
import_packages = INCLUDE_PACKAGES + ',' + EXCLUDE_PACKAGES + ',' + ALL_PACKAGES,
|
|
)
|