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

Unified Diff: content/shell/BUILD.gn

Issue 1138653004: content: Port content_shell_crash_service target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: crash_service Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/BUILD.gn
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
index 95450b5343a6e526711142be01b3b5a077996362..e894419ffcc4ce53f618148fcc886b9f5c2a1dd2 100644
--- a/content/shell/BUILD.gn
+++ b/content/shell/BUILD.gn
@@ -555,3 +555,20 @@ if (is_mac || is_win) {
}
}
}
+
+if (is_win) {
+ # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service
+ executable("crash_service") {
+ sources = [
+ "tools/content_shell_crash_service.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//components/crash/tools:crash_service",
+ ]
+
+ configs -= [ "//build/config/win:console" ]
+ configs += [ "//build/config/win:windowed" ]
+ }
+}
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698