blob: a244b1f74670922d52fa8f4c585a686d12574fa8 [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',
Mohammad Shahid4c30ea32017-08-09 18:02:10 +053010]
11
12TEST_DEPS = [
13 '//lib:TEST_ADAPTERS',
14 '//lib:TEST',
15]
16
17osgi_jar_with_tests(
18 deps = COMPILE_DEPS,
19 test_deps = TEST_DEPS,
20)
21
22onos_app(
23 title = 'Evpn-openflow App',
24 category = 'Traffic Steering',
25 url = 'http://onosproject.org',
26 description = 'Ethernet VPN (EVPN) introduces a new model for Ethernet services delivery.' +
27 'It enables integrated Layer 2 service over Ethernet with multihoming.',
Ray Milkey69ec8712017-08-08 13:00:43 -070028 required_apps = [ 'org.onosproject.route-service' ],
Mohammad Shahid4c30ea32017-08-09 18:02:10 +053029)