blob: f28792cecd92785354d06148bd62ace7ed113990 [file] [log] [blame]
Simon Hunt6fefd852017-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 Campanella01e886e2017-12-15 15:27:31 +01009 '//drivers/default:onos-drivers-default',
Andreas Pantelopoulos4e6d8b22018-02-23 10:46:03 -080010 '//apps/segmentrouting/app:onos-apps-segmentrouting-app',
Andrea Campanellacc2424a2018-03-07 14:27:54 -080011 '//apps/route-service/api:onos-apps-route-service-api',
Andrea Campanella01e886e2017-12-15 15:27:31 +010012]
13
14TEST_DEPS = [
15 '//lib:TEST_ADAPTERS',
16 '//utils/misc:onlab-misc',
Andrea Campanellacc2424a2018-03-07 14:27:54 -080017 '//apps/route-service/api:onos-apps-route-service-api-tests',
Simon Hunt6fefd852017-11-13 17:09:43 -080018]
19
20osgi_jar_with_tests (
21 deps = COMPILE_DEPS,
Andrea Campanella01e886e2017-12-15 15:27:31 +010022 test_deps = TEST_DEPS,
Simon Hunt6fefd852017-11-13 17:09:43 -080023)
24
25onos_app (
26 title = 'Trellis Troubleshooting Toolkit',
Andrea Campanella01e886e2017-12-15 15:27:31 +010027 category = 'Utilities',
28 url = 'https://wiki.opencord.org/pages/viewpage.action?pageId=4456974',
Simon Hunt6fefd852017-11-13 17:09:43 -080029 description = 'Provides static analysis of flows and groups ' +
30 'to determine the possible paths a packet may take.',
Andrea Campanellacc2424a2018-03-07 14:27:54 -080031 required_apps = [ 'org.onosproject.segmentrouting', 'org.onosproject.route-service' ],
Simon Hunt6fefd852017-11-13 17:09:43 -080032)