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

Side by Side Diff: content/content_shell.gypi

Issue 773253004: Move Syzygy build related things to their own directory with an OWNERS file, and add an allocation … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit. Created 6 years 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 | « chrome/tools/build/win/win-syzyasan-filter.txt ('k') | pdf/pdf.gyp » ('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) 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 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 'action_name': 'Instrument content_shell with SyzyAsan', 1152 'action_name': 'Instrument content_shell with SyzyAsan',
1153 'inputs': [ 1153 'inputs': [
1154 '<(PRODUCT_DIR)/content_shell.exe', 1154 '<(PRODUCT_DIR)/content_shell.exe',
1155 ], 1155 ],
1156 'outputs': [ 1156 'outputs': [
1157 '<(dest_dir)/content_shell.exe', 1157 '<(dest_dir)/content_shell.exe',
1158 '<(dest_dir)/content_shell.exe.pdb', 1158 '<(dest_dir)/content_shell.exe.pdb',
1159 ], 1159 ],
1160 'action': [ 1160 'action': [
1161 'python', 1161 'python',
1162 '<(DEPTH)/chrome/tools/build/win/syzygy_instrument.py', 1162 '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
1163 '--mode', 'asan', 1163 '--mode', 'asan',
1164 '--input_executable', '<(PRODUCT_DIR)/content_shell.exe', 1164 '--input_executable', '<(PRODUCT_DIR)/content_shell.exe',
1165 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1165 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1166 '--destination_dir', '<(dest_dir)', 1166 '--destination_dir', '<(dest_dir)',
1167 ], 1167 ],
1168 }, 1168 },
1169 ], 1169 ],
1170 }, 1170 },
1171 ], 1171 ],
1172 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1172 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1173 ] 1173 ]
1174 } 1174 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/win-syzyasan-filter.txt ('k') | pdf/pdf.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698