blob: bb1895182334cab19ebb065c9f23dda42395ece2 [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 Campanella08d07e12018-03-07 14:27:54 -080011 '//apps/route-service/api:onos-apps-route-service-api',
Andrea Campanellabd15bf52018-04-06 16:30:18 +020012 '//apps/mcast/api:onos-apps-mcast-api',
Andrea Campanellae4084402017-12-15 15:27:31 +010013]
14
15TEST_DEPS = [
16 '//lib:TEST_ADAPTERS',
17 '//utils/misc:onlab-misc',
Andrea Campanella08d07e12018-03-07 14:27:54 -080018 '//apps/route-service/api:onos-apps-route-service-api-tests',
Simon Hunt026a2872017-11-13 17:09:43 -080019]
20
21osgi_jar_with_tests (
22 deps = COMPILE_DEPS,
Andrea Campanellae4084402017-12-15 15:27:31 +010023 test_deps = TEST_DEPS,
Simon Hunt026a2872017-11-13 17:09:43 -080024)
25
26onos_app (
27 title = 'Trellis Troubleshooting Toolkit',
Andrea Campanellae4084402017-12-15 15:27:31 +010028 category = 'Utilities',
29 url = 'https://wiki.opencord.org/pages/viewpage.action?pageId=4456974',
Simon Hunt026a2872017-11-13 17:09:43 -080030 description = 'Provides static analysis of flows and groups ' +
31 'to determine the possible paths a packet may take.',
Andrea Campanellabd15bf52018-04-06 16:30:18 +020032 required_apps = [
33 'org.onosproject.segmentrouting',
34 'org.onosproject.route-service',
35 'org.onosproject.mcast',
36 ],
Simon Hunt026a2872017-11-13 17:09:43 -080037)