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

Side by Side Diff: content/content_shell.gypi

Issue 263263003: Don't SyzyASan-instrument content_shell if 'syzyasan' isn't defined. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 'shell/tools/content_shell_crash_service.cc', 1064 'shell/tools/content_shell_crash_service.cc',
1065 ], 1065 ],
1066 'msvs_settings': { 1066 'msvs_settings': {
1067 'VCLinkerTool': { 1067 'VCLinkerTool': {
1068 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 1068 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
1069 }, 1069 },
1070 }, 1070 },
1071 }, 1071 },
1072 ], 1072 ],
1073 }], # OS=="win" 1073 }], # OS=="win"
1074 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', { 1074 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and syzyasan==1', {
1075 'variables': { 1075 'variables': {
1076 'dest_dir': '<(PRODUCT_DIR)/syzygy', 1076 'dest_dir': '<(PRODUCT_DIR)/syzygy',
1077 }, 1077 },
1078 'targets': [ 1078 'targets': [
1079 { 1079 {
1080 'target_name': 'content_shell_syzyasan', 1080 'target_name': 'content_shell_syzyasan',
1081 'type': 'none', 1081 'type': 'none',
1082 'sources' : [], 1082 'sources' : [],
1083 # Instrument content_shell with SyzyAsan. 1083 # Instrument content_shell with SyzyAsan.
1084 'actions': [ 1084 'actions': [
(...skipping 14 matching lines...) Expand all
1099 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1099 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1100 '--destination_dir', '<(dest_dir)', 1100 '--destination_dir', '<(dest_dir)',
1101 ], 1101 ],
1102 }, 1102 },
1103 ], 1103 ],
1104 }, 1104 },
1105 ], 1105 ],
1106 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1106 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1107 ] 1107 ]
1108 } 1108 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698