blob: 50905b2ba90388e3f347d81875989b9fa559ceaa [file] [log] [blame]
Simon Hunt026a2872017-11-13 17:09:43 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:KRYO',
4 '//core/store/serializers:onos-core-serializers',
5 '//core/store/primitives:onos-core-primitives',
6 '//core/api:onos-api',
7 '//lib:org.apache.karaf.shell.console',
8 '//cli:onos-cli',
Andrea Campanellae4084402017-12-15 15:27:31 +01009 '//drivers/default:onos-drivers-default',
Andreas Pantelopoulosbdf25372018-02-23 10:46:03 -080010 '//apps/segmentrouting/app:onos-apps-segmentrouting-app',
Andrea Campanellae4084402017-12-15 15:27:31 +010011]
12
13TEST_DEPS = [
14 '//lib:TEST_ADAPTERS',
15 '//utils/misc:onlab-misc',
Simon Hunt026a2872017-11-13 17:09:43 -080016]
17
18osgi_jar_with_tests (
19 deps = COMPILE_DEPS,
Andrea Campanellae4084402017-12-15 15:27:31 +010020 test_deps = TEST_DEPS,
Simon Hunt026a2872017-11-13 17:09:43 -080021)
22
23onos_app (
24 title = 'Trellis Troubleshooting Toolkit',
Andrea Campanellae4084402017-12-15 15:27:31 +010025 category = 'Utilities',
26 url = 'https://wiki.opencord.org/pages/viewpage.action?pageId=4456974',
Simon Hunt026a2872017-11-13 17:09:43 -080027 description = 'Provides static analysis of flows and groups ' +
28 'to determine the possible paths a packet may take.',
Andrea Campanellab6175662018-02-20 16:51:10 +010029 required_apps = [ 'org.onosproject.segmentrouting' ],
Simon Hunt026a2872017-11-13 17:09:43 -080030)