mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-01-08 01:51:27 +01:00
34 lines
1004 B
Python
34 lines
1004 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//apps/gluon:onos-apps-gluon',
|
|
'//apps/vtn/vtnrsc:onos-apps-vtn-vtnrsc',
|
|
'//apps/route-service/api:onos-apps-route-service-api',
|
|
'//apps/evpn-route-service/api:onos-apps-evpn-route-service-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//lib:TEST',
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
title = 'EVPN OpenFlow',
|
|
category = 'Traffic Engineering',
|
|
url = 'http://onosproject.org',
|
|
description = 'Ethernet VPN (EVPN) introduces a new model for Ethernet services delivery.' +
|
|
'It enables integrated Layer 2 service over Ethernet with multihoming.',
|
|
required_apps = [ 'org.onosproject.route-service', 'org.onosproject.evpn-route-service',
|
|
'org.onosproject.gluon', 'org.onosproject.vtn' ],
|
|
)
|