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

Side by Side Diff: remoting/remoting.gyp

Issue 8416007: Refactored web-app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/plugin/host_script_object.h ('k') | remoting/webapp/me2mom/choice.html » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 }, { # else: branding!="Chrome" 90 }, { # else: branding!="Chrome"
91 'remoting_it2me_locale_files': [ 91 'remoting_it2me_locale_files': [
92 'webapp/me2mom/_locales/en/messages.json', 92 'webapp/me2mom/_locales/en/messages.json',
93 ], 93 ],
94 }], 94 }],
95 ], 95 ],
96 'remoting_it2me_files': [ 96 'remoting_it2me_files': [
97 'resources/icon_warning.png', 97 'resources/icon_warning.png',
98 'webapp/me2mom/choice.css', 98 'webapp/me2mom/choice.css',
99 'webapp/me2mom/choice.html', 99 'webapp/me2mom/choice.html',
100 'webapp/me2mom/client_screen.js',
100 'webapp/me2mom/client_session.js', 101 'webapp/me2mom/client_session.js',
101 'webapp/me2mom/cs_oauth2_trampoline.js', 102 'webapp/me2mom/cs_oauth2_trampoline.js',
102 'webapp/me2mom/debug_log.css', 103 'webapp/me2mom/debug_log.css',
103 'webapp/me2mom/debug_log.js', 104 'webapp/me2mom/debug_log.js',
104 'webapp/me2mom/dividerbottom.png', 105 'webapp/me2mom/dividerbottom.png',
105 'webapp/me2mom/dividertop.png', 106 'webapp/me2mom/dividertop.png',
107 'webapp/me2mom/host_screen.js',
108 'webapp/me2mom/host_session.js',
106 'webapp/me2mom/l10n.js', 109 'webapp/me2mom/l10n.js',
107 'webapp/me2mom/main.css', 110 'webapp/me2mom/main.css',
108 'webapp/me2mom/manifest.json', 111 'webapp/me2mom/manifest.json',
109 'webapp/me2mom/oauth2.js', 112 'webapp/me2mom/oauth2.js',
110 'webapp/me2mom/oauth2_callback.html', 113 'webapp/me2mom/oauth2_callback.html',
111 'webapp/me2mom/plugin_settings.js', 114 'webapp/me2mom/plugin_settings.js',
112 'webapp/me2mom/remoting.js', 115 'webapp/me2mom/remoting.js',
113 'webapp/me2mom/scale-to-fit.png', 116 'webapp/me2mom/scale-to-fit.png',
114 'webapp/me2mom/spinner.gif', 117 'webapp/me2mom/spinner.gif',
115 'webapp/me2mom/toolbar.css', 118 'webapp/me2mom/toolbar.css',
119 'webapp/me2mom/ui_mode.js',
120 'webapp/me2mom/util.js',
116 'webapp/me2mom/wcs.js', 121 'webapp/me2mom/wcs.js',
117 'webapp/me2mom/wcs_loader.js', 122 'webapp/me2mom/wcs_loader.js',
118 'webapp/me2mom/xhr.js', 123 'webapp/me2mom/xhr.js',
119 'resources/chromoting16.png', 124 'resources/chromoting16.png',
120 'resources/chromoting48.png', 125 'resources/chromoting48.png',
121 'resources/chromoting128.png', 126 'resources/chromoting128.png',
122 ], 127 ],
123 }, 128 },
124 129
125 'target_defaults': { 130 'target_defaults': {
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 # when the actual project is generated. 322 # when the actual project is generated.
318 'actions': [ 323 'actions': [
319 { 324 {
320 'action_name': 'Verify It2Me WebApp i18n', 325 'action_name': 'Verify It2Me WebApp i18n',
321 'inputs': [ 326 'inputs': [
322 'webapp/verify-webapp.py', 327 'webapp/verify-webapp.py',
323 'webapp/me2mom/_locales/en/messages.json', 328 'webapp/me2mom/_locales/en/messages.json',
324 'webapp/me2mom/choice.html', 329 'webapp/me2mom/choice.html',
325 'webapp/me2mom/manifest.json', 330 'webapp/me2mom/manifest.json',
326 'webapp/me2mom/remoting.js', 331 'webapp/me2mom/remoting.js',
332 'webapp/me2mom/client_screen.js',
333 'webapp/me2mom/host_screen.js',
327 'host/plugin/host_script_object.cc', 334 'host/plugin/host_script_object.cc',
328 ], 335 ],
329 'outputs': [ 336 'outputs': [
330 '<(PRODUCT_DIR)/remoting/it2me_verified.stamp', 337 '<(PRODUCT_DIR)/remoting/it2me_verified.stamp',
331 ], 338 ],
332 'action': [ 339 'action': [
333 'python', 340 'python',
334 'webapp/verify-webapp.py', 341 'webapp/verify-webapp.py',
335 '<(PRODUCT_DIR)/remoting/it2me_verified.stamp', 342 '<(PRODUCT_DIR)/remoting/it2me_verified.stamp',
336 'webapp/me2mom/_locales/en/messages.json', 343 'webapp/me2mom/_locales/en/messages.json',
337 'webapp/me2mom/choice.html', 344 'webapp/me2mom/choice.html',
338 'webapp/me2mom/manifest.json', 345 'webapp/me2mom/manifest.json',
339 'webapp/me2mom/remoting.js', 346 'webapp/me2mom/remoting.js',
347 'webapp/me2mom/client_screen.js',
348 'webapp/me2mom/host_screen.js',
340 'host/plugin/host_script_object.cc', 349 'host/plugin/host_script_object.cc',
341 ], 350 ],
342 }, 351 },
343 { 352 {
344 'action_name': 'Build It2Me WebApp', 353 'action_name': 'Build It2Me WebApp',
345 'output_dir': '<(PRODUCT_DIR)/remoting/it2me.webapp', 354 'output_dir': '<(PRODUCT_DIR)/remoting/it2me.webapp',
346 'plugin_path': '<(PRODUCT_DIR)/<(host_plugin_prefix)remoting_host_plug in.<(host_plugin_extension)', 355 'plugin_path': '<(PRODUCT_DIR)/<(host_plugin_prefix)remoting_host_plug in.<(host_plugin_extension)',
347 'zip_path': '<(PRODUCT_DIR)/remoting-it2me.zip', 356 'zip_path': '<(PRODUCT_DIR)/remoting-it2me.zip',
348 'inputs': [ 357 'inputs': [
349 'webapp/build-webapp.py', 358 'webapp/build-webapp.py',
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 '../base/allocator/allocator.gyp:allocator', 913 '../base/allocator/allocator.gyp:allocator',
905 ], 914 ],
906 }, 915 },
907 ], 916 ],
908 ], 917 ],
909 }], 918 }],
910 ], # end of 'conditions' 919 ], # end of 'conditions'
911 }, # end of target 'remoting_unittests' 920 }, # end of target 'remoting_unittests'
912 ], # end of targets 921 ], # end of targets
913 } 922 }
OLDNEW
« no previous file with comments | « remoting/host/plugin/host_script_object.h ('k') | remoting/webapp/me2mom/choice.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698