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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'webapp/wcs_sandbox_content.js', | 116 'webapp/wcs_sandbox_content.js', |
117 'webapp/xhr_proxy.js', | 117 'webapp/xhr_proxy.js', |
118 ], | 118 ], |
119 # gnubby authentication JavaScript files. | 119 # gnubby authentication JavaScript files. |
120 'remoting_webapp_js_gnubby_auth_files': [ | 120 'remoting_webapp_js_gnubby_auth_files': [ |
121 'webapp/gnubby_auth_handler.js', | 121 'webapp/gnubby_auth_handler.js', |
122 ], | 122 ], |
123 # browser test JavaScript files. | 123 # browser test JavaScript files. |
124 'remoting_webapp_js_browser_test_files': [ | 124 'remoting_webapp_js_browser_test_files': [ |
125 'webapp/browser_test/browser_test.js', | 125 'webapp/browser_test/browser_test.js', |
| 126 'webapp/browser_test/bump_scroll_browser_test.js', |
126 'webapp/browser_test/cancel_pin_browser_test.js', | 127 'webapp/browser_test/cancel_pin_browser_test.js', |
127 'webapp/browser_test/invalid_pin_browser_test.js', | 128 'webapp/browser_test/invalid_pin_browser_test.js', |
128 'webapp/browser_test/update_pin_browser_test.js', | 129 'webapp/browser_test/update_pin_browser_test.js', |
129 ], | 130 ], |
130 # These product files are excluded from our JavaScript unittest | 131 # These product files are excluded from our JavaScript unittest |
131 'remoting_webapp_unittest_exclude_files': [ | 132 'remoting_webapp_unittest_exclude_files': [ |
132 # event_handlers.js is where the onLoad handler is defined, which | 133 # event_handlers.js is where the onLoad handler is defined, which |
133 # makes it the entry point of the webapp. | 134 # makes it the entry point of the webapp. |
134 'webapp/event_handlers.js', | 135 'webapp/event_handlers.js', |
135 ], | 136 ], |
(...skipping 20 matching lines...) Expand all Loading... |
156 '<@(remoting_webapp_js_client_files)', | 157 '<@(remoting_webapp_js_client_files)', |
157 '<@(remoting_webapp_js_gnubby_auth_files)', | 158 '<@(remoting_webapp_js_gnubby_auth_files)', |
158 '<@(remoting_webapp_js_host_files)', | 159 '<@(remoting_webapp_js_host_files)', |
159 '<@(remoting_webapp_js_logging_files)', | 160 '<@(remoting_webapp_js_logging_files)', |
160 '<@(remoting_webapp_js_ui_files)', | 161 '<@(remoting_webapp_js_ui_files)', |
161 '<@(remoting_webapp_js_ui_host_control_files)', | 162 '<@(remoting_webapp_js_ui_host_control_files)', |
162 '<@(remoting_webapp_js_ui_host_display_files)', | 163 '<@(remoting_webapp_js_ui_host_display_files)', |
163 '<@(remoting_webapp_js_wcs_container_files)', | 164 '<@(remoting_webapp_js_wcs_container_files)', |
164 # Uncomment this line to include browser test files in the web app | 165 # Uncomment this line to include browser test files in the web app |
165 # to expedite debugging or local development. | 166 # to expedite debugging or local development. |
166 # '<@(remoting_webapp_js_browser_test_files)' | 167 '<@(remoting_webapp_js_browser_test_files)' |
167 ], | 168 ], |
168 | 169 |
169 # The JavaScript files required by wcs_sandbox.html. | 170 # The JavaScript files required by wcs_sandbox.html. |
170 'remoting_webapp_wcs_sandbox_html_js_files': [ | 171 'remoting_webapp_wcs_sandbox_html_js_files': [ |
171 '<@(remoting_webapp_js_wcs_sandbox_files)', | 172 '<@(remoting_webapp_js_wcs_sandbox_files)', |
172 'webapp/error.js', | 173 'webapp/error.js', |
173 'webapp/plugin_settings.js', | 174 'webapp/plugin_settings.js', |
174 ], | 175 ], |
175 | 176 |
176 # All the JavaScript files required by the webapp. | 177 # All the JavaScript files required by the webapp. |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 'webapp/html/dialog_token_refresh_failed.html', | 250 'webapp/html/dialog_token_refresh_failed.html', |
250 'webapp/html/toolbar.html', | 251 'webapp/html/toolbar.html', |
251 'webapp/html/ui_header.html', | 252 'webapp/html/ui_header.html', |
252 'webapp/html/ui_it2me.html', | 253 'webapp/html/ui_it2me.html', |
253 'webapp/html/ui_me2me.html', | 254 'webapp/html/ui_me2me.html', |
254 'webapp/html/window_frame.html', | 255 'webapp/html/window_frame.html', |
255 ], | 256 ], |
256 | 257 |
257 }, | 258 }, |
258 } | 259 } |
OLD | NEW |