mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-31 06:01:49 +01:00
Includes changes previously reviewed in #15607, #15877, and #15955. Change-Id: Ie2ff62e415f2099832ebfe05961a879b7b188fc3
28 lines
698 B
Python
28 lines
698 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:minimal-json',
|
|
'//protocols/p4runtime/model:onos-protocols-p4runtime-model',
|
|
'//drivers/default:onos-drivers-default',
|
|
'//protocols/p4runtime/api:onos-protocols-p4runtime-api',
|
|
]
|
|
|
|
osgi_jar (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
BUNDLES = [
|
|
'//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf',
|
|
]
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.p4tutorial.pipeconf',
|
|
title = 'P4 Tutorial Pipeconf',
|
|
category = 'Pipeconf',
|
|
url = 'http://onosproject.org',
|
|
description = 'Provides pipeconf for the ONOS-P4 Tutorial',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
'org.onosproject.drivers.p4runtime',
|
|
]
|
|
)
|