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