Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 1 | COMPILE_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 | |
| 9 | TEST_DEPS = [ |
| 10 | '//lib:TEST_ADAPTERS', |
| 11 | ] |
| 12 | |
| 13 | osgi_jar_with_tests ( |
| 14 | deps = COMPILE_DEPS, |
| 15 | test_deps = TEST_DEPS, |
| 16 | ) |
| 17 | |
| 18 | BUNDLES = [ |
Pier Luigi | 9f765dc | 2017-02-03 13:35:23 -0800 | [diff] [blame] | 19 | '//apps/routing/common:onos-apps-routing-common', |
Jonathan Hart | f4bd048 | 2017-01-27 15:11:18 -0800 | [diff] [blame] | 20 | '//apps/routing/fpm:onos-apps-routing-fpm', |
| 21 | '//apps/routing-api:onos-apps-routing-api', |
| 22 | ] |
| 23 | |
| 24 | onos_app ( |
| 25 | app_name = 'org.onosproject.fpm', |
| 26 | title = 'FIB Push Manager (FPM) route reciever', |
| 27 | category = 'Utility', |
| 28 | url = 'http://onosproject.org', |
| 29 | description = 'Receives routes from external routing daemon over FPM protocol', |
| 30 | included_bundles = BUNDLES, |
| 31 | ) |