blob: 864b3552554cb5b870828dd20113f7e57224a609 [file] [log] [blame]
Jimmy Yanda878fc2016-09-02 16:32:01 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//core/store/serializers:onos-core-serializers',
4 '//apps/optical-model:onos-apps-optical-model',
5]
6
7TEST_DEPS = [
8 '//lib:TEST_REST',
9 '//core/api:onos-api-tests',
10]
11
12osgi_jar_with_tests (
13 deps = COMPILE_DEPS,
14 test_deps = TEST_DEPS,
15)
16
17onos_app (
Thomas Vachuska7c45e282017-08-23 17:55:53 -070018 title = 'ROADM',
Jimmy Yanda878fc2016-09-02 16:32:01 -070019 category = 'Optical',
20 url = 'http://onosproject.org',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070021 description = 'This application provides an interface and web GUI for monitoring and ' +
22 'configuring power on ROADM devices.',
Jimmy Yanda878fc2016-09-02 16:32:01 -070023 required_apps = [ 'org.onosproject.optical-model' ],
24)