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

Unified Diff: components/crash/content/app/BUILD.gn

Issue 1417673004: Make unit_tests compile in Mac GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mac
Patch Set: merge Created 5 years, 2 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
Index: components/crash/content/app/BUILD.gn
diff --git a/components/crash/content/app/BUILD.gn b/components/crash/content/app/BUILD.gn
index e0985c559c35bda415494669abc6678445c5fb91..ea333da18829c30cb0e3e88d8b3c89cc7b16d92b 100644
--- a/components/crash/content/app/BUILD.gn
+++ b/components/crash/content/app/BUILD.gn
@@ -25,10 +25,10 @@ source_set("lib") {
source_set("app") {
sources = [
"breakpad_linux_impl.h",
- "breakpad_mac.h",
- "breakpad_mac.mm",
"breakpad_win.cc",
"breakpad_win.h",
+ "crashpad_mac.h",
+ "crashpad_mac.mm",
"hard_error_handler_win.cc",
"hard_error_handler_win.h",
]
@@ -59,7 +59,7 @@ source_set("app") {
}
if (is_mac) {
- deps += [ "//breakpad" ]
+ deps += [ "//third_party/crashpad/crashpad/client" ]
} else if (is_win) {
deps += [
"//sandbox",

Powered by Google App Engine
This is Rietveld 408576698