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', |
11 'webapp/app_remoting/html/context_menu.css', | 11 'webapp/app_remoting/html/context_menu.css', |
12 'resources/drag.webp', | 12 'resources/drag.webp', |
13 '<@(remoting_webapp_resource_files)', | 13 '<@(remoting_webapp_resource_files)', |
14 ], | 14 ], |
15 | 15 |
16 # Variables for feedback_consent.html. | 16 # Variables for feedback_consent.html. |
17 'ar_feedback_consent_template': | 17 'ar_feedback_consent_template': |
18 '<(DEPTH)/remoting/webapp/app_remoting/html/template_feedback_consent.html
', | 18 '<(DEPTH)/remoting/webapp/app_remoting/html/template_feedback_consent.html
', |
19 # These JS files are specific to the feedback consent page and are not part | 19 # These JS files are specific to the feedback consent page and are not part |
20 # of the main JS files. | 20 # of the main JS files. |
21 'ar_feedback_consent_html_js_files': [ | 21 'ar_feedback_consent_html_js_files': [ |
22 'webapp/app_remoting/js/feedback_consent.js', | 22 'webapp/app_remoting/js/feedback_consent.js', |
23 ], | 23 ], |
24 | 24 |
25 # All the JavaScript files required by feedback_consent.html. | 25 # All the JavaScript files required by feedback_consent.html. |
26 'ar_feedback_consent_html_all_js_files': [ | 26 'ar_feedback_consent_html_all_js_files': [ |
27 'webapp/app_remoting/js/feedback_consent.js', | 27 'webapp/app_remoting/js/feedback_consent.js', |
28 'webapp/base/js/base.js', | 28 'webapp/base/js/base.js', |
29 'webapp/crd/js/error.js', | 29 'webapp/crd/js/error.js', |
| 30 'webapp/crd/js/identity.js', |
30 'webapp/crd/js/oauth2_api.js', | 31 'webapp/crd/js/oauth2_api.js', |
31 'webapp/crd/js/oauth2_api_impl.js', | 32 'webapp/crd/js/oauth2_api_impl.js', |
32 'webapp/crd/js/plugin_settings.js', | 33 'webapp/crd/js/plugin_settings.js', |
33 'webapp/crd/js/l10n.js', | 34 'webapp/crd/js/l10n.js', |
34 'webapp/crd/js/xhr.js', | 35 'webapp/crd/js/xhr.js', |
35 ], | 36 ], |
36 | 37 |
37 # Variables for main.html. | 38 # Variables for main.html. |
38 # These template files are used to construct the webapp html files. | 39 # These template files are used to construct the webapp html files. |
39 'ar_main_template': | 40 'ar_main_template': |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 '<(ar_main_template)', | 95 '<(ar_main_template)', |
95 '<@(ar_main_template_files)', | 96 '<@(ar_main_template_files)', |
96 '<(ar_feedback_consent_template)', | 97 '<(ar_feedback_consent_template)', |
97 '<(remoting_webapp_template_message_window)', | 98 '<(remoting_webapp_template_message_window)', |
98 '<(remoting_webapp_template_wcs_sandbox)', | 99 '<(remoting_webapp_template_wcs_sandbox)', |
99 '<@(ar_all_js_files)', | 100 '<@(ar_all_js_files)', |
100 ], | 101 ], |
101 | 102 |
102 }, # end of variables | 103 }, # end of variables |
103 } | 104 } |
OLD | NEW |