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 22 matching lines...) Expand all Loading... |
33 'webapp/crd/js/l10n.js', | 33 'webapp/crd/js/l10n.js', |
34 'webapp/crd/js/xhr.js', | 34 'webapp/crd/js/xhr.js', |
35 ], | 35 ], |
36 | 36 |
37 # Variables for main.html. | 37 # Variables for main.html. |
38 # These template files are used to construct the webapp html files. | 38 # These template files are used to construct the webapp html files. |
39 'ar_main_template': | 39 'ar_main_template': |
40 '<(DEPTH)/remoting/webapp/app_remoting/html/template_lg.html', | 40 '<(DEPTH)/remoting/webapp/app_remoting/html/template_lg.html', |
41 'ar_main_template_files': [ | 41 'ar_main_template_files': [ |
42 'webapp/base/html/client_plugin.html', | 42 'webapp/base/html/client_plugin.html', |
43 'webapp/base/html/dialog_auth.html', | |
44 'webapp/app_remoting/html/context_menu.html', | 43 'webapp/app_remoting/html/context_menu.html', |
45 'webapp/app_remoting/html/idle_dialog.html', | 44 'webapp/app_remoting/html/idle_dialog.html', |
46 ], | 45 ], |
47 'ar_main_js_files': [ | 46 'ar_main_js_files': [ |
48 'webapp/app_remoting/js/application_context_menu.js', | 47 'webapp/app_remoting/js/application_context_menu.js', |
49 'webapp/app_remoting/js/app_remoting.js', | 48 'webapp/app_remoting/js/app_remoting.js', |
| 49 'webapp/app_remoting/js/ar_auth_dialog.js', |
50 'webapp/app_remoting/js/ar_main.js', | 50 'webapp/app_remoting/js/ar_main.js', |
51 'webapp/app_remoting/js/context_menu_adapter.js', | 51 'webapp/app_remoting/js/context_menu_adapter.js', |
52 'webapp/app_remoting/js/context_menu_chrome.js', | 52 'webapp/app_remoting/js/context_menu_chrome.js', |
53 'webapp/app_remoting/js/context_menu_dom.js', | 53 'webapp/app_remoting/js/context_menu_dom.js', |
54 'webapp/app_remoting/js/drag_and_drop.js', | 54 'webapp/app_remoting/js/drag_and_drop.js', |
55 'webapp/app_remoting/js/idle_detector.js', | 55 'webapp/app_remoting/js/idle_detector.js', |
56 'webapp/app_remoting/js/keyboard_layouts_menu.js', | 56 'webapp/app_remoting/js/keyboard_layouts_menu.js', |
57 'webapp/app_remoting/js/loading_window.js', | 57 'webapp/app_remoting/js/loading_window.js', |
58 'webapp/app_remoting/js/submenu_manager.js', | 58 'webapp/app_remoting/js/submenu_manager.js', |
59 'webapp/app_remoting/js/window_activation_menu.js', | 59 'webapp/app_remoting/js/window_activation_menu.js', |
60 'webapp/base/js/application.js', | 60 'webapp/base/js/application.js', |
61 'webapp/base/js/auth_dialog.js', | |
62 'webapp/base/js/base.js', | 61 'webapp/base/js/base.js', |
63 'webapp/base/js/message_window_helper.js', | 62 'webapp/base/js/message_window_helper.js', |
64 'webapp/base/js/message_window_manager.js', | 63 'webapp/base/js/message_window_manager.js', |
65 '<@(remoting_webapp_js_auth_client2host_files)', | 64 '<@(remoting_webapp_js_auth_client2host_files)', |
66 '<@(remoting_webapp_js_auth_google_files)', | 65 '<@(remoting_webapp_js_auth_google_files)', |
67 '<@(remoting_webapp_js_cast_extension_files)', | 66 '<@(remoting_webapp_js_cast_extension_files)', |
68 '<@(remoting_webapp_js_client_files)', | 67 '<@(remoting_webapp_js_client_files)', |
69 '<@(remoting_webapp_js_core_files)', | 68 '<@(remoting_webapp_js_core_files)', |
70 '<@(remoting_webapp_js_gnubby_auth_files)', | 69 '<@(remoting_webapp_js_gnubby_auth_files)', |
71 '<@(remoting_webapp_js_host_files)', | 70 '<@(remoting_webapp_js_host_files)', |
(...skipping 21 matching lines...) Expand all Loading... |
93 '<(ar_main_template)', | 92 '<(ar_main_template)', |
94 '<@(ar_main_template_files)', | 93 '<@(ar_main_template_files)', |
95 '<(ar_feedback_consent_template)', | 94 '<(ar_feedback_consent_template)', |
96 '<(remoting_webapp_template_message_window)', | 95 '<(remoting_webapp_template_message_window)', |
97 '<(remoting_webapp_template_wcs_sandbox)', | 96 '<(remoting_webapp_template_wcs_sandbox)', |
98 '<@(ar_all_js_files)', | 97 '<@(ar_all_js_files)', |
99 ], | 98 ], |
100 | 99 |
101 }, # end of variables | 100 }, # end of variables |
102 } | 101 } |
OLD | NEW |