OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'remoting_webapp_info_files': [ | 7 'remoting_webapp_info_files': [ |
8 'resources/chromoting16.webp', | 8 'resources/chromoting16.webp', |
9 'resources/chromoting48.webp', | 9 'resources/chromoting48.webp', |
10 'resources/chromoting128.webp', | 10 'resources/chromoting128.webp', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'webapp/crd/js/session_connector.js', | 53 'webapp/crd/js/session_connector.js', |
54 'webapp/crd/js/session_connector_impl.js', | 54 'webapp/crd/js/session_connector_impl.js', |
55 'webapp/crd/js/smart_reconnector.js', | 55 'webapp/crd/js/smart_reconnector.js', |
56 'webapp/crd/js/video_frame_recorder.js', | 56 'webapp/crd/js/video_frame_recorder.js', |
57 ], | 57 ], |
58 # Remoting core JavaScript files. | 58 # Remoting core JavaScript files. |
59 'remoting_webapp_js_core_files': [ | 59 'remoting_webapp_js_core_files': [ |
60 'webapp/base/js/application.js', | 60 'webapp/base/js/application.js', |
61 'webapp/base/js/base.js', | 61 'webapp/base/js/base.js', |
62 'webapp/base/js/platform.js', | 62 'webapp/base/js/platform.js', |
| 63 'webapp/crd/js/apps_v2_migration.js', |
63 'webapp/crd/js/error.js', | 64 'webapp/crd/js/error.js', |
64 'webapp/crd/js/event_handlers.js', | 65 'webapp/crd/js/event_handlers.js', |
65 'webapp/crd/js/plugin_settings.js', | 66 'webapp/crd/js/plugin_settings.js', |
66 # TODO(garykac) Split out UI client stuff from remoting.js. | 67 # TODO(garykac) Split out UI client stuff from remoting.js. |
67 'webapp/crd/js/remoting.js', | 68 'webapp/crd/js/remoting.js', |
68 'webapp/crd/js/typecheck.js', | 69 'webapp/crd/js/typecheck.js', |
69 'webapp/crd/js/xhr.js', | 70 'webapp/crd/js/xhr.js', |
70 ], | 71 ], |
71 # Host JavaScript files. | 72 # Host JavaScript files. |
72 'remoting_webapp_js_host_files': [ | 73 'remoting_webapp_js_host_files': [ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 # These product files are excluded from our JavaScript unittest | 163 # These product files are excluded from our JavaScript unittest |
163 'remoting_webapp_unittest_exclude_files': [ | 164 'remoting_webapp_unittest_exclude_files': [ |
164 # background.js is where the onLoad handler is defined, which | 165 # background.js is where the onLoad handler is defined, which |
165 # makes it the entry point of the background page. | 166 # makes it the entry point of the background page. |
166 'webapp/crd/js/background.js', | 167 'webapp/crd/js/background.js', |
167 ], | 168 ], |
168 # The unit test cases for the webapp | 169 # The unit test cases for the webapp |
169 'remoting_webapp_unittest_js_files': [ | 170 'remoting_webapp_unittest_js_files': [ |
170 'webapp/unittests/chrome_mocks.js', | 171 'webapp/unittests/chrome_mocks.js', |
171 'webapp/js_proto/chrome_proto.js', | 172 'webapp/js_proto/chrome_proto.js', |
| 173 'webapp/unittests/apps_v2_migration_unittest.js', |
172 'webapp/unittests/base_unittest.js', | 174 'webapp/unittests/base_unittest.js', |
173 'webapp/unittests/fallback_signal_strategy_unittest.js', | 175 'webapp/unittests/fallback_signal_strategy_unittest.js', |
174 'webapp/unittests/it2me_helpee_channel_unittest.js', | 176 'webapp/unittests/it2me_helpee_channel_unittest.js', |
175 'webapp/unittests/it2me_helper_channel_unittest.js', | 177 'webapp/unittests/it2me_helper_channel_unittest.js', |
176 'webapp/unittests/it2me_service_unittest.js', | 178 'webapp/unittests/it2me_service_unittest.js', |
177 'webapp/unittests/l10n_unittest.js', | 179 'webapp/unittests/l10n_unittest.js', |
178 'webapp/unittests/menu_button_unittest.js', | 180 'webapp/unittests/menu_button_unittest.js', |
179 'webapp/unittests/xmpp_connection_unittest.js', | 181 'webapp/unittests/xmpp_connection_unittest.js', |
180 'webapp/unittests/xmpp_login_handler_unittest.js', | 182 'webapp/unittests/xmpp_login_handler_unittest.js', |
181 'webapp/unittests/xmpp_stream_parser_unittest.js', | 183 'webapp/unittests/xmpp_stream_parser_unittest.js', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 'webapp/crd/html/dialog_token_refresh_failed.html', | 339 'webapp/crd/html/dialog_token_refresh_failed.html', |
338 'webapp/crd/html/toolbar.html', | 340 'webapp/crd/html/toolbar.html', |
339 'webapp/crd/html/ui_header.html', | 341 'webapp/crd/html/ui_header.html', |
340 'webapp/crd/html/ui_it2me.html', | 342 'webapp/crd/html/ui_it2me.html', |
341 'webapp/crd/html/ui_me2me.html', | 343 'webapp/crd/html/ui_me2me.html', |
342 'webapp/crd/html/window_frame.html', | 344 'webapp/crd/html/window_frame.html', |
343 ], | 345 ], |
344 | 346 |
345 }, | 347 }, |
346 } | 348 } |
OLD | NEW |