mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-08 18:12:08 +01:00
28 lines
747 B
Python
28 lines
747 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//drivers/utilities:onos-drivers-utilities',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api',
|
|
'//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api-tests',
|
|
]
|
|
|
|
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.ovsdb',
|
|
title = 'Generic OVSDB Drivers',
|
|
category = 'Drivers',
|
|
url = 'http://onosproject.org',
|
|
description = 'Adds support for devices using OVSDB.',
|
|
required_apps = [ 'org.onosproject.ovsdb-base' ],
|
|
)
|