blob: 17a369615039666f74c801c364c0fb792b5af1ba [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
Ray Milkey6ee38b82019-02-07 08:08:26 -080021APPS = [
22 "org.onosproject.route-service",
23]
24
Ray Milkey35ea5bf2018-07-17 15:28:44 -070025onos_app(
26 app_name = "org.onosproject.cpr",
27 category = "Traffic Engineering",
28 description = "Redirects routing control traffic to a control plane",
29 included_bundles = BUNDLES,
Ray Milkey6ee38b82019-02-07 08:08:26 -080030 required_apps = APPS,
Ray Milkey35ea5bf2018-07-17 15:28:44 -070031 title = "Control Plane Redirect",
32 url = "http://onosproject.org",
33)