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 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |