blob: 9dfe33e63f3ce5a3e979cff9707db659dfc0b465 [file] [log] [blame]
Yi Tsengbe342052017-11-03 10:21:23 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Yi Tseng0b809722017-11-03 10:23:26 -07003 '//lib:KRYO',
Yi Tsengbe342052017-11-03 10:21:23 -07004 '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
5 '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
6 '//pipelines/basic:onos-pipelines-basic',
Yi Tseng0b809722017-11-03 10:23:26 -07007 '//core/store/serializers:onos-core-serializers',
Yi Tsengbe342052017-11-03 10:21:23 -07008]
9
10TEST_DEPS = [
11 '//lib:TEST_ADAPTERS',
12]
13
14BUNDLES = [
15 '//pipelines/fabric:onos-pipelines-fabric',
16]
17
18osgi_jar_with_tests (
19 deps = COMPILE_DEPS,
20 test_deps = TEST_DEPS,
21)
22
23onos_app(
24 app_name = 'org.onosproject.pipelines.fabric',
25 title = 'Fabric Pipeline',
26 category = 'Pipeline',
27 url = 'http://onosproject.org',
28 description = 'Provides pipelines with CORD fabric underlay support.',
29 included_bundles = BUNDLES,
30 required_apps = [
31 'org.onosproject.drivers.p4runtime',
32 ]
33)