Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: remoting/remoting_webapp_files.gypi

Issue 877993002: Implement base.IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/webapp/base/js/ipc.js » ('j') | remoting/webapp/base/js/ipc.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'webapp/crd/js/hangout_session.js', 52 'webapp/crd/js/hangout_session.js',
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/ipc.js',
62 'webapp/base/js/platform.js', 63 'webapp/base/js/platform.js',
63 'webapp/crd/js/apps_v2_migration.js', 64 'webapp/crd/js/apps_v2_migration.js',
64 'webapp/crd/js/error.js', 65 'webapp/crd/js/error.js',
65 'webapp/crd/js/event_handlers.js', 66 'webapp/crd/js/event_handlers.js',
66 'webapp/crd/js/plugin_settings.js', 67 'webapp/crd/js/plugin_settings.js',
67 # TODO(garykac) Split out UI client stuff from remoting.js. 68 # TODO(garykac) Split out UI client stuff from remoting.js.
68 'webapp/crd/js/remoting.js', 69 'webapp/crd/js/remoting.js',
69 'webapp/crd/js/typecheck.js', 70 'webapp/crd/js/typecheck.js',
70 'webapp/crd/js/xhr.js', 71 'webapp/crd/js/xhr.js',
71 ], 72 ],
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'webapp/crd/js/background.js', 172 'webapp/crd/js/background.js',
172 ], 173 ],
173 # The unit test cases for the webapp 174 # The unit test cases for the webapp
174 'remoting_webapp_unittest_js_files': [ 175 'remoting_webapp_unittest_js_files': [
175 'webapp/unittests/chrome_mocks.js', 176 'webapp/unittests/chrome_mocks.js',
176 'webapp/js_proto/chrome_proto.js', 177 'webapp/js_proto/chrome_proto.js',
177 'webapp/unittests/apps_v2_migration_unittest.js', 178 'webapp/unittests/apps_v2_migration_unittest.js',
178 'webapp/unittests/base_unittest.js', 179 'webapp/unittests/base_unittest.js',
179 'webapp/unittests/dns_blackhole_checker_unittest.js', 180 'webapp/unittests/dns_blackhole_checker_unittest.js',
180 'webapp/unittests/fallback_signal_strategy_unittest.js', 181 'webapp/unittests/fallback_signal_strategy_unittest.js',
182 'webapp/unittests/ipc_unittest.js',
181 'webapp/unittests/it2me_helpee_channel_unittest.js', 183 'webapp/unittests/it2me_helpee_channel_unittest.js',
182 'webapp/unittests/it2me_helper_channel_unittest.js', 184 'webapp/unittests/it2me_helper_channel_unittest.js',
183 'webapp/unittests/it2me_service_unittest.js', 185 'webapp/unittests/it2me_service_unittest.js',
184 'webapp/unittests/l10n_unittest.js', 186 'webapp/unittests/l10n_unittest.js',
185 'webapp/unittests/menu_button_unittest.js', 187 'webapp/unittests/menu_button_unittest.js',
186 'webapp/unittests/xmpp_connection_unittest.js', 188 'webapp/unittests/xmpp_connection_unittest.js',
187 'webapp/unittests/xmpp_login_handler_unittest.js', 189 'webapp/unittests/xmpp_login_handler_unittest.js',
188 'webapp/unittests/xmpp_stream_parser_unittest.js', 190 'webapp/unittests/xmpp_stream_parser_unittest.js',
189 ], 191 ],
190 'remoting_webapp_unittest_additional_files': [ 192 'remoting_webapp_unittest_additional_files': [
(...skipping 28 matching lines...) Expand all
219 'remoting_webapp_crd_main_html_js_files': [ 221 'remoting_webapp_crd_main_html_js_files': [
220 'webapp/crd/js/crd_connect.js', 222 'webapp/crd/js/crd_connect.js',
221 'webapp/crd/js/crd_event_handlers.js', 223 'webapp/crd/js/crd_event_handlers.js',
222 'webapp/crd/js/crd_main.js', 224 'webapp/crd/js/crd_main.js',
223 'webapp/crd/js/desktop_remoting.js', 225 'webapp/crd/js/desktop_remoting.js',
224 ], 226 ],
225 227
226 # The JavaScript files that are used in the background page. 228 # The JavaScript files that are used in the background page.
227 'remoting_webapp_background_js_files': [ 229 'remoting_webapp_background_js_files': [
228 'webapp/base/js/base.js', 230 'webapp/base/js/base.js',
231 'webapp/base/js/ipc.js',
229 'webapp/base/js/message_window_helper.js', 232 'webapp/base/js/message_window_helper.js',
230 'webapp/base/js/message_window_manager.js', 233 'webapp/base/js/message_window_manager.js',
231 'webapp/crd/js/app_launcher.js', 234 'webapp/crd/js/app_launcher.js',
232 'webapp/crd/js/background.js', 235 'webapp/crd/js/background.js',
233 'webapp/crd/js/client_session.js', 236 'webapp/crd/js/client_session.js',
234 'webapp/crd/js/error.js', 237 'webapp/crd/js/error.js',
235 'webapp/crd/js/host_installer.js', 238 'webapp/crd/js/host_installer.js',
236 'webapp/crd/js/host_session.js', 239 'webapp/crd/js/host_session.js',
237 'webapp/crd/js/it2me_helpee_channel.js', 240 'webapp/crd/js/it2me_helpee_channel.js',
238 'webapp/crd/js/it2me_helper_channel.js', 241 'webapp/crd/js/it2me_helper_channel.js',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 'webapp/crd/html/dialog_token_refresh_failed.html', 348 'webapp/crd/html/dialog_token_refresh_failed.html',
346 'webapp/crd/html/toolbar.html', 349 'webapp/crd/html/toolbar.html',
347 'webapp/crd/html/ui_header.html', 350 'webapp/crd/html/ui_header.html',
348 'webapp/crd/html/ui_it2me.html', 351 'webapp/crd/html/ui_it2me.html',
349 'webapp/crd/html/ui_me2me.html', 352 'webapp/crd/html/ui_me2me.html',
350 'webapp/crd/html/window_frame.html', 353 'webapp/crd/html/window_frame.html',
351 ], 354 ],
352 355
353 }, 356 },
354 } 357 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/base/js/ipc.js » ('j') | remoting/webapp/base/js/ipc.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698