Chromium Code Reviews| Index: content/shell/BUILD.gn |
| diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn |
| index 95450b5343a6e526711142be01b3b5a077996362..63a168108c5cd1608f170663967bcf4ee41061ad 100644 |
| --- a/content/shell/BUILD.gn |
| +++ b/content/shell/BUILD.gn |
| @@ -555,3 +555,23 @@ if (is_mac || is_win) { |
| } |
| } |
| } |
| + |
| +if (is_win) { |
| + # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service |
| + executable("content_shell_crash_service") { |
| + sources = [ |
| + "tools/content_shell_crash_service.cc", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/crash/tools:crash_service", |
| + ] |
| + |
| + #'msvs_settings': { |
| + # 'VCLinkerTool': { |
| + # 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| + # }, |
| + #}, |
|
Dirk Pranke
2015/05/13 23:42:44
You get the equivalent of these msvs_settings by a
tfarina
2015/05/14 00:23:08
Done.
|
| + } |
| +} |