blob: d6b397862dc39ea2d0ba30ec2cd621480e8e7cba [file] [log] [blame]
Carmelo Cascone04098db2018-01-30 18:10:32 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:KRYO',
4 '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
5 '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
6 '//pipelines/basic:onos-pipelines-basic',
7 '//pipelines/fabric:onos-pipelines-fabric',
8 '//core/store/serializers:onos-core-serializers',
9]
10
11TEST_DEPS = [
12 '//lib:TEST_ADAPTERS',
13]
14
15BUNDLES = [
16 '//pipelines/fabric-hw:onos-pipelines-fabric-hw',
17]
18
19osgi_jar_with_tests (
20 deps = COMPILE_DEPS,
21 test_deps = TEST_DEPS,
22)
23
24onos_app(
25 app_name = 'org.onosproject.pipelines.fabric-hw',
26 title = 'Fabric Pipeline',
27 category = 'Pipeline',
28 url = 'http://onosproject.org',
29 description = 'Provides CORD fabric pipelines for HW P4-enabled switches',
30 included_bundles = BUNDLES,
31 required_apps = [
32 'org.onosproject.drivers.p4runtime',
33 'org.onosproject.pipelines.fabric',
34 ]
35)