Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:javax.ws.rs-api', |
| 4 | '//lib:servlet-api', |
| 5 | '//lib:jetty-websocket', |
| 6 | '//lib:jetty-util', |
| 7 | '//lib:jersey-media-multipart', |
| 8 | '//incubator/api:onos-incubator-api', |
| 9 | '//incubator/net:onos-incubator-net', |
| 10 | '//utils/rest:onlab-rest', |
| 11 | '//core/store/serializers:onos-core-serializers', |
| 12 | ] |
| 13 | |
| 14 | TEST_DEPS = [ |
| 15 | '//lib:TEST', |
Ray Milkey | 0c2a28f | 2016-04-28 10:17:19 -0700 | [diff] [blame] | 16 | '//core/api:onos-api-tests', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 17 | ] |
| 18 | |
Brian O'Connor | e5817c9 | 2016-04-06 15:41:48 -0700 | [diff] [blame] | 19 | RESOURCES = [ |
| 20 | 'WEB-INF/classes/index.html=src/main/webapp/index.html', |
| 21 | 'WEB-INF/classes/login.html=src/main/webapp/login.html', |
| 22 | 'WEB-INF/classes/error.html=src/main/webapp/error.html', |
| 23 | 'WEB-INF/classes/not-ready.html=src/main/webapp/not-ready.html', |
| 24 | 'WEB-INF/classes/onos.js=src/main/webapp/onos.js', |
| 25 | 'WEB-INF/classes/nav.html=src/main/webapp/nav.html', |
| 26 | 'WEB-INF/classes/app/view=src/main/webapp/app/view', |
| 27 | 'WEB-INF/classes/raw=src/main/webapp/raw', |
| 28 | ] |
| 29 | |
Brian O'Connor | e4da59d | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 30 | osgi_jar_with_tests ( |
| 31 | name = 'onos-gui', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 32 | deps = COMPILE_DEPS, |
Brian O'Connor | e4da59d | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 33 | test_deps = TEST_DEPS, |
Brian O'Connor | e5817c9 | 2016-04-06 15:41:48 -0700 | [diff] [blame] | 34 | include_resources = ','.join(RESOURCES), |
| 35 | web_context = '/onos/ui', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 36 | ) |