| 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 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 }], | 1112 }], |
| 1113 ], | 1113 ], |
| 1114 }, | 1114 }, |
| 1115 'includes': [ '../build/java_apk.gypi' ], | 1115 'includes': [ '../build/java_apk.gypi' ], |
| 1116 }, | 1116 }, |
| 1117 ], | 1117 ], |
| 1118 }], # OS=="android" | 1118 }], # OS=="android" |
| 1119 ['OS=="win"', { | 1119 ['OS=="win"', { |
| 1120 'targets': [ | 1120 'targets': [ |
| 1121 { | 1121 { |
| 1122 # GN version: //content/shell:crash_service |
| 1122 'target_name': 'content_shell_crash_service', | 1123 'target_name': 'content_shell_crash_service', |
| 1123 'type': 'executable', | 1124 'type': 'executable', |
| 1124 'dependencies': [ | 1125 'dependencies': [ |
| 1125 '../base/base.gyp:base', | 1126 '../base/base.gyp:base', |
| 1126 '../components/components.gyp:breakpad_crash_service', | 1127 '../components/components.gyp:breakpad_crash_service', |
| 1127 ], | 1128 ], |
| 1128 'include_dirs': [ | 1129 'include_dirs': [ |
| 1129 '..', | 1130 '..', |
| 1130 ], | 1131 ], |
| 1131 'sources': [ | 1132 'sources': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1168 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1168 '--destination_dir', '<(dest_dir)', | 1169 '--destination_dir', '<(dest_dir)', |
| 1169 ], | 1170 ], |
| 1170 }, | 1171 }, |
| 1171 ], | 1172 ], |
| 1172 }, | 1173 }, |
| 1173 ], | 1174 ], |
| 1174 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1175 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1175 ] | 1176 ] |
| 1176 } | 1177 } |
| OLD | NEW |