blob: a5d7b9e75f521520d42e016d1e20d4181537f533 [file] [log] [blame]
Jonghwan Hyun13a430d2018-07-22 17:02:51 +09001BUNDLES = [
2 '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api',
3 '//apps/inbandtelemetry/impl:onos-apps-inbandtelemetry-impl',
4 '//apps/inbandtelemetry/app:onos-apps-inbandtelemetry-app',
5]
6
7COMPILE_DEPS = [
8 '//lib:CORE_DEPS',
9 '//lib:KRYO',
10 '//lib:JACKSON',
11 '//core/store/serializers:onos-core-serializers',
12 '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api',
13]
14
15TEST_DEPS = [
16 '//lib:TEST_REST',
17]
18
19osgi_jar_with_tests(
20 deps = COMPILE_DEPS,
21 test_deps = TEST_DEPS,
22)
23
24onos_app (
25 app_name = 'org.onosproject.inbandtelemetry.app',
26 title = 'P4 In-band Network Telemetry Sample Application',
27 category = 'Monitoring',
28 url = 'http://onosproject.org',
29 description = 'Provides managements of INT-capable devices. Specifies flows to enable INT and' +
30 'types of metadata to collect. Sets up INT-related information.',
31 included_bundles = BUNDLES,
32)