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

Side by Side Diff: extensions/shell/app_shell.gyp

Issue 2207593002: mac {content,app}_shell: disable Breakpad upload (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'app_shell.gypi', 7 'app_shell.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 # Product name is used for Mac bundle. 10 # Product name is used for Mac bundle.
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 # Modify the Info.plist as needed. The script explains why 300 # Modify the Info.plist as needed. The script explains why
301 # this is needed. This is also done in the chrome target. 301 # this is needed. This is also done in the chrome target.
302 # The framework needs the Breakpad keys if this feature is 302 # The framework needs the Breakpad keys if this feature is
303 # enabled. It does not need the Keystone keys; these always 303 # enabled. It does not need the Keystone keys; these always
304 # come from the outer application bundle. The framework 304 # come from the outer application bundle. The framework
305 # doesn't currently use the SCM keys for anything, 305 # doesn't currently use the SCM keys for anything,
306 # but this seems like a really good place to store them. 306 # but this seems like a really good place to store them.
307 'postbuild_name': 'Tweak Info.plist', 307 'postbuild_name': 'Tweak Info.plist',
308 'action': ['../../build/mac/tweak_info_plist.py', 308 'action': ['../../build/mac/tweak_info_plist.py',
309 '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}', 309 '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}',
310 '--breakpad=1', 310 '--breakpad=0',
311 '--keystone=0', 311 '--keystone=0',
312 '--scm=1', 312 '--scm=1',
313 '--version=<(app_shell_version)', 313 '--version=<(app_shell_version)',
314 '--branding=<(app_shell_product_name)'], 314 '--branding=<(app_shell_product_name)'],
315 }, 315 },
316 ], 316 ],
317 'conditions': [ 317 'conditions': [
318 ['icu_use_data_file_flag==1', { 318 ['icu_use_data_file_flag==1', {
319 'mac_bundle_resources': [ 319 'mac_bundle_resources': [
320 '<(PRODUCT_DIR)/icudtl.dat', 320 '<(PRODUCT_DIR)/icudtl.dat',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 '../../build/isolate.gypi', 401 '../../build/isolate.gypi',
402 ], 402 ],
403 'sources': [ 403 'sources': [
404 'app_shell_unittests.isolate', 404 'app_shell_unittests.isolate',
405 ], 405 ],
406 }, 406 },
407 ], 407 ],
408 }], 408 }],
409 ], 409 ],
410 } 410 }
OLDNEW
« no previous file with comments | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698