blob: 415084e0219b220f895082af361a19588878860c [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
5osgi_jar (
6 deps = COMPILE_DEPS,
7)
8
9BUNDLES = [
10 "//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel",
11]
12
13onos_app (
14 app_name = "org.onosproject.p4tutorial.mytunnel",
15 title = "MyTunnel Demo App",
16 category = "Traffic Engineering",
17 url = "http://onosproject.org",
18 description = "Provides forwarding between each pair of hosts via MyTunnel protocol",
19 included_bundles = BUNDLES,
20 required_apps = [
21 "org.onosproject.p4tutorial.pipeconf",
22 ]
23)