Jonathan Hart f4bd048b05 Make vRouter components into separate apps.
This allows us to leverage the ONOS app subsystem for selecting which
components to load.

CORD-710

Change-Id: Ibd7c4c1afd2caa137b44c085e7b6b5b4a1082521
2017-02-03 00:54:27 +00:00

25 lines
580 B
Python

COMPILE_DEPS = [
'//lib:CORE_DEPS',
'//incubator/api:onos-incubator-api',
'//apps/routing-api:onos-apps-routing-api',
]
BUNDLES = [
'//apps/routing-api:onos-apps-routing-api',
'//apps/routing/common:onos-apps-routing-common',
'//apps/bgprouter:onos-apps-bgprouter',
]
osgi_jar (
deps = COMPILE_DEPS,
)
onos_app (
title = 'BGP Router App',
category = 'Traffic Steering',
url = 'http://onosproject.org',
description = 'BGP router application.',
included_bundles = BUNDLES,
required_apps = [ 'org.onosproject.fibinstaller' ],
)