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

Side by Side Diff: remoting/app_remoting_webapp_build.gypi

Issue 895523004: [Chromoting] Add ability to enable/disable GDrive support per-app in gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add Application.hasCapability Created 5 years, 10 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_webapp_files.gypi', 9 'remoting_webapp_files.gypi',
10 'app_remoting_webapp_files.gypi', 10 'app_remoting_webapp_files.gypi',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 '<@(ar_generated_html_files)', 115 '<@(ar_generated_html_files)',
116 '--locales', 116 '--locales',
117 '<@(remoting_webapp_locale_files)', 117 '<@(remoting_webapp_locale_files)',
118 '--jinja_paths', 118 '--jinja_paths',
119 '<(DEPTH)/remoting/webapp/app_remoting', 119 '<(DEPTH)/remoting/webapp/app_remoting',
120 '<@(remoting_app_id)', 120 '<@(remoting_app_id)',
121 '--app_name', 121 '--app_name',
122 '<(remoting_app_name)', 122 '<(remoting_app_name)',
123 '--app_description', 123 '--app_description',
124 '<(remoting_app_description)', 124 '<(remoting_app_description)',
125 '--app_capabilities',
126 '>@(_app_capabilities)',
125 '--service_environment', 127 '--service_environment',
126 '<@(ar_service_environment)', 128 '<@(ar_service_environment)',
127 ], 129 ],
128 }, 130 },
129 { 131 {
130 'action_name': 'Build ">(ar_app_name)" main.html', 132 'action_name': 'Build ">(ar_app_name)" main.html',
131 'inputs': [ 133 'inputs': [
132 '<(DEPTH)/remoting/webapp/build-html.py', 134 '<(DEPTH)/remoting/webapp/build-html.py',
133 '<(ar_main_template)', 135 '<(ar_main_template)',
134 '<@(ar_main_template_files)', 136 '<@(ar_main_template_files)',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 # rather than using the extension id. 179 # rather than using the extension id.
178 # This is only done for Dev apps because the app-id for Release apps 180 # This is only done for Dev apps because the app-id for Release apps
179 # *must* match the extension id. 181 # *must* match the extension id.
180 'variables': { 182 'variables': {
181 'remoting_app_id': ['--appid', '>(_app_id)'], 183 'remoting_app_id': ['--appid', '>(_app_id)'],
182 }, 184 },
183 }], 185 }],
184 ], # conditions 186 ], # conditions
185 }, # target_defaults 187 }, # target_defaults
186 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698