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