OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |