mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
LISP mapping provider should not be aware of LISP driver, and LISP specific LCAF to Mapping Extension conversion will be realized in LISP extension address interpreter which is located in protocol. Change-Id: Idc38c13e084e323f9e07a62fcfac846d6b3d9a56
18 lines
467 B
Python
18 lines
467 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//protocols/lisp/api:onos-protocols-lisp-api',
|
|
'//protocols/lisp/msg:onos-protocols-lisp-msg',
|
|
'//apps/mappingmanagement/api:onos-apps-mappingmanagement-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//protocols/lisp/api:onos-protocols-lisp-api-tests',
|
|
'//apps/mappingmanagement/api:onos-apps-mappingmanagement-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|