| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 'webapp/wcs_sandbox_content.js', | 115 'webapp/wcs_sandbox_content.js', |
| 116 'webapp/xhr_proxy.js', | 116 'webapp/xhr_proxy.js', |
| 117 ], | 117 ], |
| 118 # gnubby authentication JavaScript files. | 118 # gnubby authentication JavaScript files. |
| 119 'remoting_webapp_js_gnubby_auth_files': [ | 119 'remoting_webapp_js_gnubby_auth_files': [ |
| 120 'webapp/gnubby_auth_handler.js', | 120 'webapp/gnubby_auth_handler.js', |
| 121 ], | 121 ], |
| 122 # browser test JavaScript files. | 122 # browser test JavaScript files. |
| 123 'remoting_webapp_js_browser_test_files': [ | 123 'remoting_webapp_js_browser_test_files': [ |
| 124 'webapp/browser_test/browser_test.js', | 124 'webapp/browser_test/browser_test.js', |
| 125 'webapp/browser_test/cancel_pin_browser_test.js', |
| 126 'webapp/browser_test/invalid_pin_browser_test.js', |
| 127 'webapp/browser_test/update_pin_browser_test.js', |
| 125 ], | 128 ], |
| 126 # The JavaScript files required by main.html. | 129 # The JavaScript files required by main.html. |
| 127 'remoting_webapp_main_html_js_files': [ | 130 'remoting_webapp_main_html_js_files': [ |
| 128 # Include the core files first as it is required by the other files. | 131 # Include the core files first as it is required by the other files. |
| 129 # Otherwise, Jscompile will complain. | 132 # Otherwise, Jscompile will complain. |
| 130 '<@(remoting_webapp_js_core_files)', | 133 '<@(remoting_webapp_js_core_files)', |
| 131 '<@(remoting_webapp_js_auth_client2host_files)', | 134 '<@(remoting_webapp_js_auth_client2host_files)', |
| 132 '<@(remoting_webapp_js_auth_google_files)', | 135 '<@(remoting_webapp_js_auth_google_files)', |
| 133 '<@(remoting_webapp_js_client_files)', | 136 '<@(remoting_webapp_js_client_files)', |
| 134 '<@(remoting_webapp_js_gnubby_auth_files)', | 137 '<@(remoting_webapp_js_gnubby_auth_files)', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 'webapp/html/dialog_manage_pairings.html', | 221 'webapp/html/dialog_manage_pairings.html', |
| 219 'webapp/html/dialog_token_refresh_failed.html', | 222 'webapp/html/dialog_token_refresh_failed.html', |
| 220 'webapp/html/toolbar.html', | 223 'webapp/html/toolbar.html', |
| 221 'webapp/html/ui_header.html', | 224 'webapp/html/ui_header.html', |
| 222 'webapp/html/ui_it2me.html', | 225 'webapp/html/ui_it2me.html', |
| 223 'webapp/html/ui_me2me.html', | 226 'webapp/html/ui_me2me.html', |
| 224 ], | 227 ], |
| 225 | 228 |
| 226 }, | 229 }, |
| 227 } | 230 } |
| OLD | NEW |