blob: 8bf5772ebf0c32a624e9a90e3f00125afeea7a9e [file] [log] [blame]
Carmelo Cascone41644362018-08-09 16:56:43 -07001COMPILE_DEPS = CORE_DEPS + [
2 "//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf",
3]
4
Ray Milkey05d609a2018-08-15 10:27:58 -07005osgi_jar(
Carmelo Cascone41644362018-08-09 16:56:43 -07006 deps = COMPILE_DEPS,
7)
8
9BUNDLES = [
10 "//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel",
11]
12
Ray Milkey05d609a2018-08-15 10:27:58 -070013onos_app(
Carmelo Cascone41644362018-08-09 16:56:43 -070014 app_name = "org.onosproject.p4tutorial.mytunnel",
Carmelo Cascone41644362018-08-09 16:56:43 -070015 category = "Traffic Engineering",
Carmelo Cascone41644362018-08-09 16:56:43 -070016 description = "Provides forwarding between each pair of hosts via MyTunnel protocol",
17 included_bundles = BUNDLES,
18 required_apps = [
19 "org.onosproject.p4tutorial.pipeconf",
Ray Milkey05d609a2018-08-15 10:27:58 -070020 ],
21 title = "MyTunnel Demo App",
22 url = "http://onosproject.org",
Carmelo Cascone41644362018-08-09 16:56:43 -070023)