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

Side by Side Diff: remoting/app_remoting_webapp_build.gypi

Issue 1143643003: [Chromoting] Add GN build support for ar_sample_app target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'includes': [ 6 'includes': [
7 'remoting_version.gypi', 7 'remoting_version.gypi',
8 'remoting_locales.gypi', 8 'remoting_locales.gypi',
9 'remoting_options.gypi', 9 'remoting_options.gypi',
10 'remoting_webapp_files.gypi', 10 'remoting_webapp_files.gypi',
11 'app_remoting_webapp_files.gypi', 11 'app_remoting_webapp_files.gypi',
12 ], 12 ],
13 13
14 # GN version: See remoting/webapp/build_template.gni
14 'target_defaults': { 15 'target_defaults': {
15 'type': 'none', 16 'type': 'none',
16 17
17 'dependencies': [ 18 'dependencies': [
18 # TODO(wez): Create proper resources for shared-stub and app-specific 19 # TODO(wez): Create proper resources for shared-stub and app-specific
19 # stubs. 20 # stubs.
20 '<(DEPTH)/remoting/remoting.gyp:remoting_resources', 21 '<(DEPTH)/remoting/remoting.gyp:remoting_resources',
21 ], 22 ],
22 23
23 'locale_files': [ 24 'locale_files': [
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ], 113 ],
113 'action': [ 114 'action': [
114 'python', '<(DEPTH)/remoting/webapp/build-webapp.py', 115 'python', '<(DEPTH)/remoting/webapp/build-webapp.py',
115 '<(buildtype)', 116 '<(buildtype)',
116 '<(version_full)', 117 '<(version_full)',
117 '<(output_dir)', 118 '<(output_dir)',
118 '<(zip_path)', 119 '<(zip_path)',
119 '<(ar_app_manifest_app)', # Manifest template 120 '<(ar_app_manifest_app)', # Manifest template
120 'app_remoting', # Web app type 121 'app_remoting', # Web app type
121 '<@(ar_webapp_files)', 122 '<@(ar_webapp_files)',
122 '<@(ar_generated_html_files)',
123 '--locales_listfile', 123 '--locales_listfile',
124 '<(ar_webapp_locales_listfile)', 124 '<(ar_webapp_locales_listfile)',
125 '--jinja_paths', 125 '--jinja_paths',
126 '<(DEPTH)/remoting/webapp/app_remoting', 126 '<(DEPTH)/remoting/webapp/app_remoting',
127 '<@(remoting_app_id)', 127 '<@(remoting_app_id)',
128 '--app_name', 128 '--app_name',
129 '<(remoting_app_name)', 129 '<(remoting_app_name)',
130 '--app_description', 130 '--app_description',
131 '<(remoting_app_description)', 131 '<(remoting_app_description)',
132 '--app_capabilities', 132 '--app_capabilities',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 # rather than using the extension id. 241 # rather than using the extension id.
242 # This is only done for Dev apps because the app-id for Release apps 242 # This is only done for Dev apps because the app-id for Release apps
243 # *must* match the extension id. 243 # *must* match the extension id.
244 'variables': { 244 'variables': {
245 'remoting_app_id': ['--appid', '>(_app_id)'], 245 'remoting_app_id': ['--appid', '>(_app_id)'],
246 }, 246 },
247 }], 247 }],
248 ], # conditions 248 ], # conditions
249 }, # target_defaults 249 }, # target_defaults
250 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698