blob: 6bdb38975a28da766eee62e9b835f322d11c87d0 [file] [log] [blame]
Carmelo Cascone770507f2017-09-14 20:58:04 +02001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:minimal-json',
Carmelo Cascone87892e22017-11-13 16:01:29 -08004 '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
Carmelo Cascone770507f2017-09-14 20:58:04 +02005 '//drivers/default:onos-drivers-default',
6 '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
7]
8
9osgi_jar (
10 deps = COMPILE_DEPS,
11)
12
13BUNDLES = [
14 '//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf',
Carmelo Cascone770507f2017-09-14 20:58:04 +020015]
16
17onos_app (
18 app_name = 'org.onosproject.p4tutorial.pipeconf',
19 title = 'P4 Tutorial Pipeconf',
20 category = 'Pipeconf',
21 url = 'http://onosproject.org',
22 description = 'Provides pipeconf for the ONOS-P4 Tutorial',
23 included_bundles = BUNDLES,
24 required_apps = [
25 'org.onosproject.drivers.p4runtime',
26 ]
27)