blob: 026827df26d003bd3fb0e371517045865a107e80 [file] [log] [blame]
Carmelo Cascone770507f2017-09-14 20:58:04 +02001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf',
4]
5
6osgi_jar (
7 deps = COMPILE_DEPS,
8)
9
10BUNDLES = [
11 '//apps/p4-tutorial/icmpdropper:onos-apps-p4-tutorial-icmpdropper',
12]
13
14onos_app (
15 app_name = 'org.onosproject.p4tutorial.icmpdropper',
16 title = 'ICMP Dropper (P4 Tutorial)',
17 category = 'Security',
18 url = 'http://onosproject.org',
19 description = 'Inhibits forwarding of ICMP packets for PI-enabled devices using the ' +
20 'p4-tutorial-pipeconf.',
21 included_bundles = BUNDLES,
22 required_apps = [
23 'org.onosproject.p4tutorial.pipeconf',
24 ]
25)