OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'ar_shared_resource_files': [ | |
8 'webapp/app_remoting/html/ar_dialog.css', | |
9 'webapp/app_remoting/html/ar_main.css', | |
10 'webapp/app_remoting/html/feedback_consent.css', | |
11 'webapp/app_remoting/html/loading_window.css', | |
12 'webapp/app_remoting/html/context_menu.css', | |
13 'webapp/app_remoting/html/cloud_print_dialog.css', | |
14 'resources/drag.webp', | |
15 '<@(remoting_webapp_resource_files)', | |
16 ], | |
17 | |
18 # Variables for feedback_consent.html. | |
19 'ar_feedback_consent_template': | |
20 '<(DEPTH)/remoting/webapp/app_remoting/html/template_feedback_consent.html
', | |
21 # These JS files are specific to the feedback consent page and are not part | |
22 # of the main JS files. | |
23 'ar_feedback_consent_html_js_files': [ | |
24 'webapp/app_remoting/js/feedback_consent.js', | |
25 ], | |
26 | |
27 # All the JavaScript files required by feedback_consent.html. | |
28 'ar_feedback_consent_html_all_js_files': [ | |
29 'webapp/app_remoting/js/feedback_consent.js', | |
30 'webapp/base/js/base.js', | |
31 'webapp/base/js/chromoting_event.js', | |
32 'webapp/base/js/error.js', | |
33 'webapp/base/js/identity.js', | |
34 'webapp/base/js/oauth2_api.js', | |
35 'webapp/base/js/oauth2_api_impl.js', | |
36 'webapp/base/js/platform.js', | |
37 'webapp/base/js/plugin_settings.js', | |
38 'webapp/base/js/l10n.js', | |
39 'webapp/base/js/xhr.js', | |
40 ], | |
41 | |
42 # Variables for loading_window.html. Note that the JS files are the same as | |
43 # for message_window.html, and are not duplicated here. | |
44 'ar_loading_window_template': | |
45 '<(DEPTH)/remoting/webapp/app_remoting/html/template_loading_window.html', | |
46 | |
47 # Variables for main.html. | |
48 # These template files are used to construct the webapp html files. | |
49 'ar_main_template': | |
50 '<(DEPTH)/remoting/webapp/app_remoting/html/template_lg.html', | |
51 'ar_main_template_files': [ | |
52 'webapp/base/html/client_plugin.html', | |
53 'webapp/base/html/connection_dropped_dialog.html', | |
54 'webapp/app_remoting/html/context_menu.html', | |
55 'webapp/app_remoting/html/idle_dialog.html', | |
56 ], | |
57 'ar_main_js_files': [ | |
58 'webapp/app_remoting/js/application_context_menu.js', | |
59 'webapp/app_remoting/js/app_connected_view.js', | |
60 'webapp/app_remoting/js/app_remoting.js', | |
61 'webapp/app_remoting/js/app_remoting_activity.js', | |
62 'webapp/app_remoting/js/ar_auth_dialog.js', | |
63 'webapp/app_remoting/js/cloud_print_dialog_container.js', | |
64 'webapp/app_remoting/js/context_menu_adapter.js', | |
65 'webapp/app_remoting/js/context_menu_chrome.js', | |
66 'webapp/app_remoting/js/context_menu_dom.js', | |
67 'webapp/app_remoting/js/drag_and_drop.js', | |
68 'webapp/app_remoting/js/gaia_license_manager.js', | |
69 'webapp/app_remoting/js/idle_detector.js', | |
70 'webapp/app_remoting/js/keyboard_layouts_menu.js', | |
71 'webapp/app_remoting/js/license_manager.js', | |
72 'webapp/app_remoting/js/loading_window.js', | |
73 'webapp/app_remoting/js/submenu_manager.js', | |
74 'webapp/app_remoting/js/window_activation_menu.js', | |
75 'webapp/base/js/message_window_helper.js', | |
76 'webapp/base/js/message_window_manager.js', | |
77 '<@(remoting_webapp_shared_js_auth_google_files)', | |
78 '<@(remoting_webapp_shared_js_client_files)', | |
79 '<@(remoting_webapp_shared_js_core_files)', | |
80 '<@(remoting_webapp_shared_js_host_files)', | |
81 '<@(remoting_webapp_shared_js_logging_files)', | |
82 '<@(remoting_webapp_shared_js_signaling_files)', | |
83 '<@(remoting_webapp_shared_js_ui_files)', | |
84 ], | |
85 | |
86 # The JavaScript files to be injected into the clould print dialog. | |
87 'ar_cloud_print_dialog_js_files': [ | |
88 'webapp/app_remoting/js/cloud_print_dialog/cloud_print_dialog_injected.js'
, | |
89 ], | |
90 | |
91 # Variables for ar_background.html. | |
92 'ar_background_template': | |
93 '<(DEPTH)/remoting/webapp/app_remoting/html/template_background.html', | |
94 'ar_background_html_js_files': [ | |
95 'webapp/app_remoting/js/ar_background.js', | |
96 'webapp/base/js/platform.js', | |
97 ], | |
98 | |
99 'ar_vendor_js_files': [ | |
100 'webapp/app_remoting/vendor/arv_main.js', | |
101 ], | |
102 | |
103 'ar_vendor_html_files': [ | |
104 'webapp/app_remoting/vendor/arv_background.html', | |
105 'webapp/app_remoting/vendor/arv_main.html', | |
106 'webapp/app_remoting/vendor/arv_wcs_sandbox.html', | |
107 ], | |
108 | |
109 'ar_all_js_files': [ | |
110 '<@(ar_main_js_files)', | |
111 '<@(ar_cloud_print_dialog_js_files)', | |
112 '<@(ar_feedback_consent_html_js_files)', | |
113 '<@(remoting_webapp_message_window_html_js_files)', | |
114 '<@(remoting_webapp_wcs_sandbox_html_js_files)', | |
115 '<@(ar_background_html_js_files)', | |
116 'webapp/base/js/credits_js.js', | |
117 ], | |
118 | |
119 # Files that contain localizable strings. | |
120 'app_remoting_webapp_localizable_files': [ | |
121 '<(ar_main_template)', | |
122 '<@(ar_main_template_files)', | |
123 '<(ar_feedback_consent_template)', | |
124 '<(ar_loading_window_template)', | |
125 '<(remoting_webapp_template_message_window)', | |
126 '<(remoting_webapp_template_wcs_sandbox)', | |
127 '<@(ar_all_js_files)', | |
128 ], | |
129 | |
130 }, # end of variables | |
131 } | |
OLD | NEW |