| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'ar_shared_resource_files': [ | 7 'ar_shared_resource_files': [ |
| 8 'webapp/app_remoting/html/ar_dialog.css', | 8 'webapp/app_remoting/html/ar_dialog.css', |
| 9 'webapp/app_remoting/html/ar_main.css', | 9 'webapp/app_remoting/html/ar_main.css', |
| 10 'webapp/app_remoting/html/feedback_consent.css', | 10 'webapp/app_remoting/html/feedback_consent.css', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 # These JS files are specific to the feedback consent page and are not part | 21 # These JS files are specific to the feedback consent page and are not part |
| 22 # of the main JS files. | 22 # of the main JS files. |
| 23 'ar_feedback_consent_html_js_files': [ | 23 'ar_feedback_consent_html_js_files': [ |
| 24 'webapp/app_remoting/js/feedback_consent.js', | 24 'webapp/app_remoting/js/feedback_consent.js', |
| 25 ], | 25 ], |
| 26 | 26 |
| 27 # All the JavaScript files required by feedback_consent.html. | 27 # All the JavaScript files required by feedback_consent.html. |
| 28 'ar_feedback_consent_html_all_js_files': [ | 28 'ar_feedback_consent_html_all_js_files': [ |
| 29 'webapp/app_remoting/js/feedback_consent.js', | 29 'webapp/app_remoting/js/feedback_consent.js', |
| 30 'webapp/base/js/base.js', | 30 'webapp/base/js/base.js', |
| 31 'webapp/base/js/chromoting_event.js', |
| 31 'webapp/base/js/error.js', | 32 'webapp/base/js/error.js', |
| 32 'webapp/base/js/identity.js', | 33 'webapp/base/js/identity.js', |
| 33 'webapp/base/js/oauth2_api.js', | 34 'webapp/base/js/oauth2_api.js', |
| 34 'webapp/base/js/oauth2_api_impl.js', | 35 'webapp/base/js/oauth2_api_impl.js', |
| 36 'webapp/base/js/platform.js', |
| 35 'webapp/base/js/plugin_settings.js', | 37 'webapp/base/js/plugin_settings.js', |
| 36 'webapp/base/js/l10n.js', | 38 'webapp/base/js/l10n.js', |
| 37 'webapp/base/js/xhr.js', | 39 'webapp/base/js/xhr.js', |
| 38 ], | 40 ], |
| 39 | 41 |
| 40 # Variables for loading_window.html. Note that the JS files are the same as | 42 # Variables for loading_window.html. Note that the JS files are the same as |
| 41 # for message_window.html, and are not duplicated here. | 43 # for message_window.html, and are not duplicated here. |
| 42 'ar_loading_window_template': | 44 'ar_loading_window_template': |
| 43 '<(DEPTH)/remoting/webapp/app_remoting/html/template_loading_window.html', | 45 '<(DEPTH)/remoting/webapp/app_remoting/html/template_loading_window.html', |
| 44 | 46 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 '<@(ar_main_template_files)', | 122 '<@(ar_main_template_files)', |
| 121 '<(ar_feedback_consent_template)', | 123 '<(ar_feedback_consent_template)', |
| 122 '<(ar_loading_window_template)', | 124 '<(ar_loading_window_template)', |
| 123 '<(remoting_webapp_template_message_window)', | 125 '<(remoting_webapp_template_message_window)', |
| 124 '<(remoting_webapp_template_wcs_sandbox)', | 126 '<(remoting_webapp_template_wcs_sandbox)', |
| 125 '<@(ar_all_js_files)', | 127 '<@(ar_all_js_files)', |
| 126 ], | 128 ], |
| 127 | 129 |
| 128 }, # end of variables | 130 }, # end of variables |
| 129 } | 131 } |
| OLD | NEW |