blob: 468a283536c834a512b13f8e5d1046afa3752ff5 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
Ray Milkey35ea5bf2018-07-17 15:28:44 -07002 "//apps/routing-api:onos-apps-routing-api",
3]
4
5TEST_DEPS = TEST_ADAPTERS + [
Ray Milkey35ea5bf2018-07-17 15:28:44 -07006 "//apps/routing-api:onos-apps-routing-api-tests",
7 "//utils/osgi:onlab-osgi-tests",
8]
9
10osgi_jar_with_tests(
11 test_deps = TEST_DEPS,
12 deps = COMPILE_DEPS,
13)
14
15BUNDLES = [
16 "//apps/routing/common:onos-apps-routing-common",
17 "//apps/routing/cpr:onos-apps-routing-cpr",
18 "//apps/routing-api:onos-apps-routing-api",
19]
20
21onos_app(
22 app_name = "org.onosproject.cpr",
23 category = "Traffic Engineering",
24 description = "Redirects routing control traffic to a control plane",
25 included_bundles = BUNDLES,
26 title = "Control Plane Redirect",
27 url = "http://onosproject.org",
28)