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