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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 ], | 62 ], |
63 # The unit test cases for the webapp | 63 # The unit test cases for the webapp |
64 'remoting_webapp_unittests_js_files': [ | 64 'remoting_webapp_unittests_js_files': [ |
65 # TODO(jrw): Move spy_promise to base. | 65 # TODO(jrw): Move spy_promise to base. |
66 'webapp/unittests/spy_promise.js', | 66 'webapp/unittests/spy_promise.js', |
67 'webapp/unittests/spy_promise_unittest.js', | 67 'webapp/unittests/spy_promise_unittest.js', |
68 'webapp/base/js/base_unittest.js', | 68 'webapp/base/js/base_unittest.js', |
69 'webapp/base/js/base_event_hook_unittest.js', | 69 'webapp/base/js/base_event_hook_unittest.js', |
70 'webapp/base/js/base_inherits_unittest.js', | 70 'webapp/base/js/base_inherits_unittest.js', |
71 'webapp/base/js/ipc_unittest.js', | 71 'webapp/base/js/ipc_unittest.js', |
| 72 'webapp/base/js/protocol_extension_manager_unittest.js', |
72 'webapp/crd/js/apps_v2_migration_unittest.js', | 73 'webapp/crd/js/apps_v2_migration_unittest.js', |
73 'webapp/crd/js/desktop_viewport_unittest.js', | 74 'webapp/crd/js/desktop_viewport_unittest.js', |
74 'webapp/crd/js/dns_blackhole_checker_unittest.js', | 75 'webapp/crd/js/dns_blackhole_checker_unittest.js', |
75 'webapp/crd/js/error_unittest.js', | 76 'webapp/crd/js/error_unittest.js', |
76 'webapp/crd/js/fallback_signal_strategy_unittest.js', | 77 'webapp/crd/js/fallback_signal_strategy_unittest.js', |
77 'webapp/crd/js/gcd_client_unittest.js', | 78 'webapp/crd/js/gcd_client_unittest.js', |
78 'webapp/crd/js/host_table_entry_unittest.js', | 79 'webapp/crd/js/host_table_entry_unittest.js', |
79 'webapp/crd/js/identity_unittest.js', | 80 'webapp/crd/js/identity_unittest.js', |
80 'webapp/crd/js/l10n_unittest.js', | 81 'webapp/crd/js/l10n_unittest.js', |
81 'webapp/crd/js/menu_button_unittest.js', | 82 'webapp/crd/js/menu_button_unittest.js', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'webapp/crd/js/video_frame_recorder.js', | 160 'webapp/crd/js/video_frame_recorder.js', |
160 ], | 161 ], |
161 # Remoting core JavaScript files. | 162 # Remoting core JavaScript files. |
162 'remoting_webapp_js_core_files': [ | 163 'remoting_webapp_js_core_files': [ |
163 'webapp/base/js/app_capabilities.js', | 164 'webapp/base/js/app_capabilities.js', |
164 'webapp/base/js/application.js', | 165 'webapp/base/js/application.js', |
165 'webapp/base/js/base.js', | 166 'webapp/base/js/base.js', |
166 'webapp/base/js/input_dialog.js', | 167 'webapp/base/js/input_dialog.js', |
167 'webapp/base/js/ipc.js', | 168 'webapp/base/js/ipc.js', |
168 'webapp/base/js/platform.js', | 169 'webapp/base/js/platform.js', |
| 170 'webapp/base/js/protocol_extension_manager.js', |
169 'webapp/base/js/protocol_extension.js', | 171 'webapp/base/js/protocol_extension.js', |
170 'webapp/crd/js/apps_v2_migration.js', | 172 'webapp/crd/js/apps_v2_migration.js', |
171 'webapp/crd/js/error.js', | 173 'webapp/crd/js/error.js', |
172 'webapp/crd/js/event_handlers.js', | 174 'webapp/crd/js/event_handlers.js', |
173 'webapp/crd/js/plugin_settings.js', | 175 'webapp/crd/js/plugin_settings.js', |
174 'webapp/crd/js/remoting.js', | 176 'webapp/crd/js/remoting.js', |
175 'webapp/crd/js/typecheck.js', | 177 'webapp/crd/js/typecheck.js', |
176 'webapp/crd/js/xhr.js', | 178 'webapp/crd/js/xhr.js', |
177 'webapp/crd/js/gcd_client.js', | 179 'webapp/crd/js/gcd_client.js', |
178 ], | 180 ], |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 '<(remoting_webapp_template_background)', | 464 '<(remoting_webapp_template_background)', |
463 '<(remoting_webapp_template_main)', | 465 '<(remoting_webapp_template_main)', |
464 '<(remoting_webapp_template_message_window)', | 466 '<(remoting_webapp_template_message_window)', |
465 '<(remoting_webapp_template_wcs_sandbox)', | 467 '<(remoting_webapp_template_wcs_sandbox)', |
466 '<@(remoting_webapp_template_files)', | 468 '<@(remoting_webapp_template_files)', |
467 '<@(remoting_webapp_crd_js_files)', | 469 '<@(remoting_webapp_crd_js_files)', |
468 ], | 470 ], |
469 | 471 |
470 }, | 472 }, |
471 } | 473 } |
OLD | NEW |