blob: 038736fed0138b82bf696668a757e38735a2358a [file] [log] [blame]
Carmelo Cascone770507f2017-09-14 20:58:04 +02001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:minimal-json',
4 '//incubator/bmv2/model:onos-incubator-bmv2-model',
5 '//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',
15 '//drivers/default:onos-drivers-default',
16 '//incubator/bmv2/model:onos-incubator-bmv2-model',
17]
18
19onos_app (
20 app_name = 'org.onosproject.p4tutorial.pipeconf',
21 title = 'P4 Tutorial Pipeconf',
22 category = 'Pipeconf',
23 url = 'http://onosproject.org',
24 description = 'Provides pipeconf for the ONOS-P4 Tutorial',
25 included_bundles = BUNDLES,
26 required_apps = [
27 'org.onosproject.drivers.p4runtime',
28 ]
29)