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/feedback_consent.css', | 9 'webapp/app_remoting/html/feedback_consent.css', |
10 'webapp/app_remoting/html/feedback_consent.html', | |
11 'webapp/app_remoting/html/context_menu.css', | 10 'webapp/app_remoting/html/context_menu.css', |
12 'resources/drag.webp', | 11 'resources/drag.webp', |
13 '<@(remoting_webapp_resource_files)', | 12 '<@(remoting_webapp_resource_files)', |
14 ], | 13 ], |
15 | 14 |
| 15 # Variables for feedback_consent.html. |
| 16 'ar_feedback_consent_template': |
| 17 '<(DEPTH)/remoting/webapp/app_remoting/html/template_feedback_consent.html
', |
| 18 'ar_feedback_consent_template_files': [ |
| 19 ], |
| 20 'ar_feedback_consent_js_files': [ |
| 21 'webapp/app_remoting/js/feedback_consent.js', |
| 22 'webapp/base/js/base.js', |
| 23 'webapp/crd/js/error.js', |
| 24 'webapp/crd/js/oauth2_api.js', |
| 25 'webapp/crd/js/oauth2_api_impl.js', |
| 26 'webapp/crd/js/plugin_settings.js', |
| 27 'webapp/crd/js/l10n.js', |
| 28 'webapp/crd/js/xhr.js', |
| 29 ], |
| 30 |
16 # Variables for main.html. | 31 # Variables for main.html. |
17 # These template files are used to construct the webapp html files. | 32 # These template files are used to construct the webapp html files. |
18 'ar_main_template': | 33 'ar_main_template': |
19 '<(DEPTH)/remoting/webapp/app_remoting/html/template_lg.html', | 34 '<(DEPTH)/remoting/webapp/app_remoting/html/template_lg.html', |
20 'ar_main_template_files': [ | 35 'ar_main_template_files': [ |
21 'webapp/base/html/client_plugin.html', | 36 'webapp/base/html/client_plugin.html', |
22 'webapp/base/html/dialog_auth.html', | 37 'webapp/base/html/dialog_auth.html', |
23 'webapp/app_remoting/html/context_menu.html', | 38 'webapp/app_remoting/html/context_menu.html', |
24 'webapp/app_remoting/html/idle_dialog.html', | 39 'webapp/app_remoting/html/idle_dialog.html', |
25 ], | 40 ], |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 # Referenced from feedback_consent.html. | 82 # Referenced from feedback_consent.html. |
68 'webapp/app_remoting/js/feedback_consent.js', | 83 'webapp/app_remoting/js/feedback_consent.js', |
69 # Referenced from message_window.html. | 84 # Referenced from message_window.html. |
70 'webapp/base/js/message_window.js', | 85 'webapp/base/js/message_window.js', |
71 ], | 86 ], |
72 | 87 |
73 # Files that contain localizable strings. | 88 # Files that contain localizable strings. |
74 'app_remoting_webapp_localizable_files': [ | 89 'app_remoting_webapp_localizable_files': [ |
75 '<(ar_main_template)', | 90 '<(ar_main_template)', |
76 '<@(ar_main_template_files)', | 91 '<@(ar_main_template_files)', |
77 'webapp/app_remoting/html/feedback_consent.html', | 92 '<(ar_feedback_consent_template)', |
78 '<@(ar_all_js_files)', | 93 '<@(ar_all_js_files)', |
79 ], | 94 ], |
80 | 95 |
81 }, # end of variables | 96 }, # end of variables |
82 } | 97 } |
OLD | NEW |