mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
- Correct RFC page number for LCAF addresses Change-Id: I51dbf02f69c15aad81d5571198b39e030f991a96
33 lines
830 B
Python
33 lines
830 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//protocols/lisp/api:onos-protocols-lisp-api',
|
|
'//apps/mappingmanagement/api:onos-apps-mappingmanagement-api',
|
|
'//core/store/serializers:onos-core-serializers'
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
]
|
|
|
|
BUNDLES = [
|
|
':onos-drivers-lisp',
|
|
]
|
|
|
|
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.lisp',
|
|
title = 'LISP Device Drivers',
|
|
category = 'Drivers',
|
|
url = 'https://wiki.onosproject.org/display/ONOS/LISP+as+SBI',
|
|
description = 'ONOS LISP Device Drivers application.',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [ 'org.onosproject.lisp' ],
|
|
)
|