Chromium Code Reviews| 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 28 matching lines...) Expand all Loading... | |
| 39 ], | 39 ], |
| 40 # Client JavaScript files. | 40 # Client JavaScript files. |
| 41 'remoting_webapp_js_client_files': [ | 41 'remoting_webapp_js_client_files': [ |
| 42 'webapp/client_plugin.js', | 42 'webapp/client_plugin.js', |
| 43 # TODO(garykac) For client_screen: | 43 # TODO(garykac) For client_screen: |
| 44 # * Split out pin/access code stuff into separate file. | 44 # * Split out pin/access code stuff into separate file. |
| 45 # * Move client logic into session_connector | 45 # * Move client logic into session_connector |
| 46 'webapp/client_screen.js', | 46 'webapp/client_screen.js', |
| 47 'webapp/client_session.js', | 47 'webapp/client_session.js', |
| 48 'webapp/clipboard.js', | 48 'webapp/clipboard.js', |
| 49 'webapp/hrd_session_events.js', | |
| 50 'webapp/hrd_helper_session.js', | |
|
Jamie
2014/08/05 21:15:13
HRD is not a widely-recognized acronym, and I thin
kelvinp
2014/08/07 18:03:24
Done.
| |
| 49 'webapp/media_source_renderer.js', | 51 'webapp/media_source_renderer.js', |
| 50 'webapp/session_connector.js', | 52 'webapp/session_connector.js', |
| 51 'webapp/smart_reconnector.js', | 53 'webapp/smart_reconnector.js', |
| 52 ], | 54 ], |
| 53 # Remoting core JavaScript files. | 55 # Remoting core JavaScript files. |
| 54 'remoting_webapp_js_core_files': [ | 56 'remoting_webapp_js_core_files': [ |
| 55 'webapp/base.js', | 57 'webapp/base.js', |
| 56 'webapp/error.js', | 58 'webapp/error.js', |
| 57 'webapp/event_handlers.js', | 59 'webapp/event_handlers.js', |
| 58 'webapp/plugin_settings.js', | 60 'webapp/plugin_settings.js', |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 249 'webapp/html/dialog_token_refresh_failed.html', | 251 'webapp/html/dialog_token_refresh_failed.html', |
| 250 'webapp/html/toolbar.html', | 252 'webapp/html/toolbar.html', |
| 251 'webapp/html/ui_header.html', | 253 'webapp/html/ui_header.html', |
| 252 'webapp/html/ui_it2me.html', | 254 'webapp/html/ui_it2me.html', |
| 253 'webapp/html/ui_me2me.html', | 255 'webapp/html/ui_me2me.html', |
| 254 'webapp/html/window_frame.html', | 256 'webapp/html/window_frame.html', |
| 255 ], | 257 ], |
| 256 | 258 |
| 257 }, | 259 }, |
| 258 } | 260 } |
| OLD | NEW |