blob: 46946a70b5692f502c1ad8645b4e577d5ef07083 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
2 "//incubator/api:onos-incubator-api",
3 "//apps/routing-api:onos-apps-routing-api",
4 "//apps/route-service/api:onos-apps-route-service-api",
5]
6
7TEST_DEPS = TEST_ADAPTERS + [
8 "//incubator/api:onos-incubator-api-tests",
9 "//apps/routing-api:onos-apps-routing-api-tests",
10 "//apps/route-service/api:onos-apps-route-service-api-tests",
11]
12
13osgi_jar_with_tests(
14 test_deps = TEST_DEPS,
15 deps = COMPILE_DEPS,
16)
17
18BUNDLES = [
19 "//apps/routing/fibinstaller:onos-apps-routing-fibinstaller",
20 "//apps/routing-api:onos-apps-routing-api",
21]
22
23onos_app(
24 app_name = "org.onosproject.fibinstaller",
25 category = "Traffic Engineering",
26 description = "Installs routing rules into switches",
27 included_bundles = BUNDLES,
28 required_apps = ["org.onosproject.route-service"],
29 title = "FIB Installer",
30 url = "http://onosproject.org",
31)