Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: remoting/app_remoting_webapp_files.gypi

Issue 1191883002: Revert of [AppRemoting] Break out AppRemoting shared module (re-land). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/app_remoting_webapp_build.gypi ('k') | remoting/remoting_options.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'webapp/base/html/connection_dropped_dialog.html', 50 'webapp/base/html/connection_dropped_dialog.html',
51 'webapp/app_remoting/html/context_menu.html', 51 'webapp/app_remoting/html/context_menu.html',
52 'webapp/app_remoting/html/idle_dialog.html', 52 'webapp/app_remoting/html/idle_dialog.html',
53 ], 53 ],
54 'ar_main_js_files': [ 54 'ar_main_js_files': [
55 'webapp/app_remoting/js/application_context_menu.js', 55 'webapp/app_remoting/js/application_context_menu.js',
56 'webapp/app_remoting/js/app_connected_view.js', 56 'webapp/app_remoting/js/app_connected_view.js',
57 'webapp/app_remoting/js/app_remoting.js', 57 'webapp/app_remoting/js/app_remoting.js',
58 'webapp/app_remoting/js/app_remoting_activity.js', 58 'webapp/app_remoting/js/app_remoting_activity.js',
59 'webapp/app_remoting/js/ar_auth_dialog.js', 59 'webapp/app_remoting/js/ar_auth_dialog.js',
60 'webapp/app_remoting/js/ar_main.js',
60 'webapp/app_remoting/js/context_menu_adapter.js', 61 'webapp/app_remoting/js/context_menu_adapter.js',
61 'webapp/app_remoting/js/context_menu_chrome.js', 62 'webapp/app_remoting/js/context_menu_chrome.js',
62 'webapp/app_remoting/js/context_menu_dom.js', 63 'webapp/app_remoting/js/context_menu_dom.js',
63 'webapp/app_remoting/js/drag_and_drop.js', 64 'webapp/app_remoting/js/drag_and_drop.js',
64 'webapp/app_remoting/js/gaia_license_manager.js', 65 'webapp/app_remoting/js/gaia_license_manager.js',
65 'webapp/app_remoting/js/idle_detector.js', 66 'webapp/app_remoting/js/idle_detector.js',
66 'webapp/app_remoting/js/keyboard_layouts_menu.js', 67 'webapp/app_remoting/js/keyboard_layouts_menu.js',
67 'webapp/app_remoting/js/license_manager.js', 68 'webapp/app_remoting/js/license_manager.js',
68 'webapp/app_remoting/js/loading_window.js', 69 'webapp/app_remoting/js/loading_window.js',
69 'webapp/app_remoting/js/submenu_manager.js', 70 'webapp/app_remoting/js/submenu_manager.js',
70 'webapp/app_remoting/js/window_activation_menu.js', 71 'webapp/app_remoting/js/window_activation_menu.js',
72 'webapp/base/js/application.js',
73 'webapp/base/js/base.js',
71 'webapp/base/js/message_window_helper.js', 74 'webapp/base/js/message_window_helper.js',
72 'webapp/base/js/message_window_manager.js', 75 'webapp/base/js/message_window_manager.js',
73 '<@(remoting_webapp_shared_js_auth_google_files)', 76 '<@(remoting_webapp_shared_js_auth_google_files)',
74 '<@(remoting_webapp_shared_js_client_files)', 77 '<@(remoting_webapp_shared_js_client_files)',
75 '<@(remoting_webapp_shared_js_core_files)', 78 '<@(remoting_webapp_shared_js_core_files)',
76 '<@(remoting_webapp_shared_js_host_files)', 79 '<@(remoting_webapp_shared_js_host_files)',
77 '<@(remoting_webapp_shared_js_logging_files)', 80 '<@(remoting_webapp_shared_js_logging_files)',
78 '<@(remoting_webapp_shared_js_signaling_files)', 81 '<@(remoting_webapp_shared_js_signaling_files)',
79 '<@(remoting_webapp_shared_js_ui_files)', 82 '<@(remoting_webapp_shared_js_ui_files)',
80 ], 83 ],
81 84
82 # Variables for ar_background.html. 85 'ar_background_js_files': [
83 'ar_background_template':
84 '<(DEPTH)/remoting/webapp/app_remoting/html/template_background.html',
85 'ar_background_html_js_files': [
86 'webapp/app_remoting/js/ar_background.js', 86 'webapp/app_remoting/js/ar_background.js',
87 'webapp/base/js/platform.js', 87 'webapp/base/js/platform.js',
88 ], 88 ],
89 89
90 'ar_vendor_js_files': [
91 'webapp/app_remoting/vendor/arv_main.js',
92 ],
93
94 'ar_vendor_html_files': [
95 'webapp/app_remoting/vendor/arv_background.html',
96 'webapp/app_remoting/vendor/arv_main.html',
97 'webapp/app_remoting/vendor/arv_wcs_sandbox.html',
98 ],
99
100 'ar_all_js_files': [ 90 'ar_all_js_files': [
101 '<@(ar_main_js_files)', 91 '<@(ar_main_js_files)',
102 '<@(ar_feedback_consent_html_js_files)', 92 '<@(ar_feedback_consent_html_js_files)',
103 '<@(remoting_webapp_message_window_html_js_files)', 93 '<@(remoting_webapp_message_window_html_js_files)',
104 '<@(remoting_webapp_wcs_sandbox_html_js_files)', 94 '<@(remoting_webapp_wcs_sandbox_html_js_files)',
105 '<@(ar_background_html_js_files)', 95 # Referenced from the manifest.
96 '<@(ar_background_js_files)',
106 ], 97 ],
107 98
108 # Files that contain localizable strings. 99 # Files that contain localizable strings.
109 'app_remoting_webapp_localizable_files': [ 100 'app_remoting_webapp_localizable_files': [
110 '<(ar_main_template)', 101 '<(ar_main_template)',
111 '<@(ar_main_template_files)', 102 '<@(ar_main_template_files)',
112 '<(ar_feedback_consent_template)', 103 '<(ar_feedback_consent_template)',
113 '<(ar_loading_window_template)', 104 '<(ar_loading_window_template)',
114 '<(remoting_webapp_template_message_window)', 105 '<(remoting_webapp_template_message_window)',
115 '<(remoting_webapp_template_wcs_sandbox)', 106 '<(remoting_webapp_template_wcs_sandbox)',
116 '<@(ar_all_js_files)', 107 '<@(ar_all_js_files)',
117 ], 108 ],
118 109
119 }, # end of variables 110 }, # end of variables
120 } 111 }
OLDNEW
« no previous file with comments | « remoting/app_remoting_webapp_build.gypi ('k') | remoting/remoting_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698