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

Side by Side Diff: content/content_shell.gypi

Issue 2126673002: Move the Syzygy scripts out of //chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the GYP files. Created 4 years, 5 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 (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 'content_shell_version': '99.77.34.5', 8 'content_shell_version': '99.77.34.5',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 'action_name': 'Instrument content_shell with SyzyAsan', 898 'action_name': 'Instrument content_shell with SyzyAsan',
899 'inputs': [ 899 'inputs': [
900 '<(PRODUCT_DIR)/content_shell.exe', 900 '<(PRODUCT_DIR)/content_shell.exe',
901 ], 901 ],
902 'outputs': [ 902 'outputs': [
903 '<(dest_dir)/content_shell.exe', 903 '<(dest_dir)/content_shell.exe',
904 '<(dest_dir)/content_shell.exe.pdb', 904 '<(dest_dir)/content_shell.exe.pdb',
905 ], 905 ],
906 'action': [ 906 'action': [
907 'python', 907 'python',
908 '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py', 908 '<(DEPTH)/build/win/syzygy/instrument.py',
909 '--mode', 'asan', 909 '--mode', 'asan',
910 '--input_executable', '<(PRODUCT_DIR)/content_shell.exe', 910 '--input_executable', '<(PRODUCT_DIR)/content_shell.exe',
911 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 911 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
912 '--destination_dir', '<(dest_dir)', 912 '--destination_dir', '<(dest_dir)',
913 ], 913 ],
914 }, 914 },
915 ], 915 ],
916 }, 916 },
917 ], 917 ],
918 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 918 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
919 ] 919 ]
920 } 920 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/syzygy/syzyasan-instrumentation-filter.txt ('k') | third_party/kasko/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698