| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # `7MM"""Mq. `7MM | 5 # `7MM"""Mq. `7MM |
| 6 # MM `MM. MM | 6 # MM `MM. MM |
| 7 # MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya | 7 # MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya |
| 8 # MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb | 8 # MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb |
| 9 # MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" | 9 # MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" |
| 10 # MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , | 10 # MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 # | 416 # |
| 417 | 417 |
| 418 remoting_webapp_template_background = "crd/html/template_background.html" | 418 remoting_webapp_template_background = "crd/html/template_background.html" |
| 419 | 419 |
| 420 # These JS files are specific to the background page and are not part of | 420 # These JS files are specific to the background page and are not part of |
| 421 # the main JS files. | 421 # the main JS files. |
| 422 remoting_webapp_background_html_js_files = [ | 422 remoting_webapp_background_html_js_files = [ |
| 423 "crd/js/activation_handler.js", | 423 "crd/js/activation_handler.js", |
| 424 "crd/js/app_launcher.js", | 424 "crd/js/app_launcher.js", |
| 425 "crd/js/background.js", | 425 "crd/js/background.js", |
| 426 "crd/js/options_export.js", |
| 426 ] | 427 ] |
| 427 | 428 |
| 428 # All the JavaScript files required by background.html. | 429 # All the JavaScript files required by background.html. |
| 429 remoting_webapp_background_html_all_js_files = | 430 remoting_webapp_background_html_all_js_files = |
| 430 remoting_webapp_background_html_js_files | 431 remoting_webapp_background_html_js_files |
| 431 remoting_webapp_background_html_all_js_files += [ | 432 remoting_webapp_background_html_all_js_files += [ |
| 432 "base/js/base.js", | 433 "base/js/base.js", |
| 433 "base/js/chromoting_event.js", | 434 "base/js/chromoting_event.js", |
| 434 "base/js/error.js", | 435 "base/js/error.js", |
| 435 "base/js/identity.js", | 436 "base/js/identity.js", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 "webapp/crd/manifest.json.jinja2", | 564 "webapp/crd/manifest.json.jinja2", |
| 564 remoting_webapp_template_background, | 565 remoting_webapp_template_background, |
| 565 remoting_webapp_template_main, | 566 remoting_webapp_template_main, |
| 566 remoting_webapp_template_message_window, | 567 remoting_webapp_template_message_window, |
| 567 remoting_webapp_template_wcs_sandbox, | 568 remoting_webapp_template_wcs_sandbox, |
| 568 ] + remoting_webapp_template_files + remoting_webapp_crd_js_files | 569 ] + remoting_webapp_template_files + remoting_webapp_crd_js_files |
| 569 | 570 |
| 570 webapp_js_files = remoting_webapp_unittest_html_all_js_files + | 571 webapp_js_files = remoting_webapp_unittest_html_all_js_files + |
| 571 remoting_webapp_wcs_sandbox_html_js_files + | 572 remoting_webapp_wcs_sandbox_html_js_files + |
| 572 remoting_webapp_background_html_js_files | 573 remoting_webapp_background_html_js_files |
| OLD | NEW |