| 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 action("html") { | 5 action("html") { |
| 6 script = "build-html.py" | 6 script = "build-html.py" |
| 7 | 7 |
| 8 remoting_webapp_template_main = "html/template_main.html" | 8 remoting_webapp_template_main = "html/template_main.html" |
| 9 remoting_webapp_template_files = [ | 9 remoting_webapp_template_files = [ |
| 10 "html/butterbar.html", | 10 "html/butterbar.html", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 remoting_webapp_js_client_files = [ | 61 remoting_webapp_js_client_files = [ |
| 62 "client_plugin.js", | 62 "client_plugin.js", |
| 63 | 63 |
| 64 # TODO(garykac) For client_screen: | 64 # TODO(garykac) For client_screen: |
| 65 # * Split out pin/access code stuff into separate file. | 65 # * Split out pin/access code stuff into separate file. |
| 66 # * Move client logic into session_connector | 66 # * Move client logic into session_connector |
| 67 "client_screen.js", | 67 "client_screen.js", |
| 68 "client_session.js", | 68 "client_session.js", |
| 69 "clipboard.js", | 69 "clipboard.js", |
| 70 "hangout_session.js", | 70 "hangout_session.js", |
| 71 "media_source_renderer.js", | |
| 72 "session_connector.js", | 71 "session_connector.js", |
| 73 "smart_reconnector.js", | 72 "smart_reconnector.js", |
| 74 "video_frame_recorder.js", | 73 "video_frame_recorder.js", |
| 75 ] | 74 ] |
| 76 | 75 |
| 77 # gnubby authentication JavaScript files. | 76 # gnubby authentication JavaScript files. |
| 78 remoting_webapp_js_gnubby_auth_files = [ "gnubby_auth_handler.js" ] | 77 remoting_webapp_js_gnubby_auth_files = [ "gnubby_auth_handler.js" ] |
| 79 | 78 |
| 80 # cast extension handler JavaScript files. | 79 # cast extension handler JavaScript files. |
| 81 remoting_webapp_js_cast_extension_files = [ "cast_extension_handler.js" ] | 80 remoting_webapp_js_cast_extension_files = [ "cast_extension_handler.js" ] |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 args += [ "--template" ] + | 181 args += [ "--template" ] + |
| 183 rebase_path(remoting_webapp_template_files, template_rel_dir) | 182 rebase_path(remoting_webapp_template_files, template_rel_dir) |
| 184 args += [ "--js" ] + | 183 args += [ "--js" ] + |
| 185 rebase_path(remoting_webapp_main_html_js_files, template_rel_dir) | 184 rebase_path(remoting_webapp_main_html_js_files, template_rel_dir) |
| 186 args += [ | 185 args += [ |
| 187 "--dir-for-templates", | 186 "--dir-for-templates", |
| 188 rebase_path(template_rel_dir, root_build_dir), | 187 rebase_path(template_rel_dir, root_build_dir), |
| 189 ] | 188 ] |
| 190 } | 189 } |
| 191 # TODO(GYP) wcs_sandbox.html | 190 # TODO(GYP) wcs_sandbox.html |
| OLD | NEW |