| 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 | 7 |
| 8 # Jscompile proto files. | 8 # Jscompile proto files. |
| 9 # These provide type information for jscompile. | 9 # These provide type information for jscompile. |
| 10 'remoting_webapp_js_proto_files': [ | 10 'remoting_webapp_js_proto_files': [ |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'webapp/crd/js/session_connector.js', | 161 'webapp/crd/js/session_connector.js', |
| 162 'webapp/crd/js/session_connector_impl.js', | 162 'webapp/crd/js/session_connector_impl.js', |
| 163 'webapp/crd/js/smart_reconnector.js', | 163 'webapp/crd/js/smart_reconnector.js', |
| 164 'webapp/crd/js/video_frame_recorder.js', | 164 'webapp/crd/js/video_frame_recorder.js', |
| 165 ], | 165 ], |
| 166 # Remoting core JavaScript files. | 166 # Remoting core JavaScript files. |
| 167 'remoting_webapp_js_core_files': [ | 167 'remoting_webapp_js_core_files': [ |
| 168 'webapp/base/js/app_capabilities.js', | 168 'webapp/base/js/app_capabilities.js', |
| 169 'webapp/base/js/application.js', | 169 'webapp/base/js/application.js', |
| 170 'webapp/base/js/base.js', | 170 'webapp/base/js/base.js', |
| 171 'webapp/base/js/input_dialog.js', | |
| 172 'webapp/base/js/ipc.js', | 171 'webapp/base/js/ipc.js', |
| 172 'webapp/base/js/modal_dialogs.js', |
| 173 'webapp/base/js/platform.js', | 173 'webapp/base/js/platform.js', |
| 174 'webapp/base/js/protocol_extension_manager.js', | 174 'webapp/base/js/protocol_extension_manager.js', |
| 175 'webapp/base/js/protocol_extension.js', | 175 'webapp/base/js/protocol_extension.js', |
| 176 'webapp/crd/js/apps_v2_migration.js', | 176 'webapp/crd/js/apps_v2_migration.js', |
| 177 'webapp/crd/js/error.js', | 177 'webapp/crd/js/error.js', |
| 178 'webapp/crd/js/event_handlers.js', | 178 'webapp/crd/js/event_handlers.js', |
| 179 'webapp/crd/js/plugin_settings.js', | 179 'webapp/crd/js/plugin_settings.js', |
| 180 'webapp/crd/js/remoting.js', | 180 'webapp/crd/js/remoting.js', |
| 181 'webapp/crd/js/typecheck.js', | 181 'webapp/crd/js/typecheck.js', |
| 182 'webapp/crd/js/xhr.js', | 182 'webapp/crd/js/xhr.js', |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 '<(remoting_webapp_template_background)', | 469 '<(remoting_webapp_template_background)', |
| 470 '<(remoting_webapp_template_main)', | 470 '<(remoting_webapp_template_main)', |
| 471 '<(remoting_webapp_template_message_window)', | 471 '<(remoting_webapp_template_message_window)', |
| 472 '<(remoting_webapp_template_wcs_sandbox)', | 472 '<(remoting_webapp_template_wcs_sandbox)', |
| 473 '<@(remoting_webapp_template_files)', | 473 '<@(remoting_webapp_template_files)', |
| 474 '<@(remoting_webapp_crd_js_files)', | 474 '<@(remoting_webapp_crd_js_files)', |
| 475 ], | 475 ], |
| 476 | 476 |
| 477 }, | 477 }, |
| 478 } | 478 } |
| OLD | NEW |