mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
- net and cli bundle has dependency to optical-model bundle, which should be removed in the longer run. (ONOS-4626) Change-Id: Ieff43ef2002ee21f4578a6e2a729cd35ce3eae3d
36 lines
942 B
Python
36 lines
942 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
'//protocols/rest/api:onos-protocols-rest-api',
|
|
'//apps/optical-model:onos-apps-optical-model',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
]
|
|
|
|
BUNDLES = [
|
|
':onos-drivers-ciena',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
resources_root = 'src/main/resources',
|
|
resources = glob(['src/main/resources/**']),
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.drivers.ciena',
|
|
title = 'Ciena Device Drivers',
|
|
category = 'Drivers',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS Ciena Device Drivers application.',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [ 'org.onosproject.restsb', 'org.onosproject.optical-model' ],
|
|
)
|