blob: 2a39cbbd5db2091e0ab22164edb8b76f99961834 [file] [log] [blame]
Carmelo Cascone41644362018-08-09 16:56:43 -07001COMPILE_DEPS = CORE_DEPS + [
2 "@minimal_json//jar",
3 "//protocols/p4runtime/model:onos-protocols-p4runtime-model",
4 "//protocols/p4runtime/api:onos-protocols-p4runtime-api",
5 "//drivers/default:onos-drivers-default",
6]
7
8osgi_jar (
9 deps = COMPILE_DEPS,
10)
11
12BUNDLES = [
13 "//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf",
14]
15
16onos_app (
17 app_name = "org.onosproject.p4tutorial.pipeconf",
18 title = "P4 Tutorial Pipeconf",
19 category = "Pipeconf",
20 url = "http://onosproject.org",
21 description = "Provides pipeconf for the ONOS-P4 Tutorial",
22 included_bundles = BUNDLES,
23 required_apps = [
24 "org.onosproject.drivers.p4runtime",
25 ]
26)