blob: e6cc635c7d1d7d1e436f4c4bd8af1ae3c71eddce [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + [
2 "//incubator/api:onos-incubator-api",
3]
4
5BUNDLES = [
6 "//apps/routing-api:onos-apps-routing-api",
7 "//apps/routing/common:onos-apps-routing-common",
8 "//apps/vrouter:onos-apps-vrouter",
9]
10
11osgi_jar(
12 deps = COMPILE_DEPS,
13)
14
15onos_app(
16 category = "Traffic Engineering",
17 description = "Virtual router (vRouter) application.",
18 included_bundles = BUNDLES,
19 required_apps = [
20 "org.onosproject.fibinstaller",
21 "org.onosproject.cpr",
22 "org.onosproject.fpm",
23 ],
24 title = "Virtual Router",
25 url = "http://onosproject.org",
26)