blob: 7945c938736288637ee8a82110d0f23e9501127d [file] [log] [blame]
Carmelo Cascone700648c2018-04-11 12:02:16 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf',
4]
5
6osgi_jar (
7 deps = COMPILE_DEPS,
8)
9
10BUNDLES = [
11 '//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel',
12]
13
14onos_app (
15 app_name = 'org.onosproject.p4tutorial.mytunnel',
16 title = 'MyTunnel Demo App',
Thomas Vachuskaca0b5df2018-06-22 16:24:47 -070017 category = 'Traffic Engineering',
Carmelo Cascone700648c2018-04-11 12:02:16 -070018 url = 'http://onosproject.org',
19 description = 'Provides forwarding between each pair of hosts via MyTunnel protocol',
20 included_bundles = BUNDLES,
21 required_apps = [
22 'org.onosproject.p4tutorial.pipeconf',
23 ]
24)