blob: d3d92ee26fdcc05782ec5edf69f0f7b714a0937e [file] [log] [blame]
Mohammad Shahid4c30ea32017-08-09 18:02:10 +05301COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:org.apache.karaf.shell.console',
4 '//cli:onos-cli',
5 '//incubator/api:onos-incubator-api',
6 '//core/store/serializers:onos-core-serializers',
7 '//apps/gluon:onos-apps-gluon',
8 '//apps/vtn/vtnrsc:onos-apps-vtn-vtnrsc',
Ray Milkey69ec8712017-08-08 13:00:43 -07009 '//apps/route-service/api:onos-apps-route-service-api',
Ray Milkeya95193c2017-08-10 15:35:36 -070010 '//apps/evpn-route-service/api:onos-apps-evpn-route-service-api',
Mohammad Shahid4c30ea32017-08-09 18:02:10 +053011]
12
13TEST_DEPS = [
14 '//lib:TEST_ADAPTERS',
15 '//lib:TEST',
16]
17
18osgi_jar_with_tests(
19 deps = COMPILE_DEPS,
20 test_deps = TEST_DEPS,
21)
22
23onos_app(
24 title = 'Evpn-openflow App',
25 category = 'Traffic Steering',
26 url = 'http://onosproject.org',
27 description = 'Ethernet VPN (EVPN) introduces a new model for Ethernet services delivery.' +
28 'It enables integrated Layer 2 service over Ethernet with multihoming.',
Ray Milkeya95193c2017-08-10 15:35:36 -070029 required_apps = [ 'org.onosproject.route-service', 'org.onosproject.evpnrouteservice',
30 'org.onosproject.gluon', 'org.onosproject.vtn' ],
Mohammad Shahid4c30ea32017-08-09 18:02:10 +053031)