blob: b221d0e6e977dca4e5d34ed9f772e005927e3daf [file] [log] [blame]
Jonathan Hartf4bd0482017-01-27 15:11:18 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:org.apache.karaf.shell.console',
4 '//cli:onos-cli',
5 '//incubator/api:onos-incubator-api',
6 '//apps/routing-api:onos-apps-routing-api',
7]
8
9TEST_DEPS = [
10 '//lib:TEST_ADAPTERS',
11]
12
13osgi_jar_with_tests (
14 deps = COMPILE_DEPS,
15 test_deps = TEST_DEPS,
16)
17
18BUNDLES = [
19 '//apps/routing/fpm:onos-apps-routing-fpm',
20 '//apps/routing-api:onos-apps-routing-api',
21]
22
23onos_app (
24 app_name = 'org.onosproject.fpm',
25 title = 'FIB Push Manager (FPM) route reciever',
26 category = 'Utility',
27 url = 'http://onosproject.org',
28 description = 'Receives routes from external routing daemon over FPM protocol',
29 included_bundles = BUNDLES,
30)