blob: 89a499d91cc2474bc2d589d98a71f788c26bb58f [file] [log] [blame]
Jonathan Hartf4bd0482017-01-27 15:11:18 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//incubator/api:onos-incubator-api',
4 '//apps/routing-api:onos-apps-routing-api',
5]
6
7TEST_DEPS = [
8 '//lib:TEST_ADAPTERS',
9 '//incubator/api:onos-incubator-api-tests',
10 '//apps/routing-api:onos-apps-routing-api-tests',
11]
12
13osgi_jar_with_tests (
14 deps = COMPILE_DEPS,
15 test_deps = TEST_DEPS,
16)
17
18BUNDLES = [
19 '//apps/routing/cpr:onos-apps-routing-cpr',
20 '//apps/routing-api:onos-apps-routing-api',
21]
22
23onos_app (
24 app_name = 'org.onosproject.cpr',
25 title = 'Control plane redirect',
26 category = 'Traffic Steering',
27 url = 'http://onosproject.org',
28 description = 'Redirects routing control traffic to a control plane',
29 included_bundles = BUNDLES,
30)