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

Unified Diff: shell/crash/BUILD.gn

Issue 1227333002: Add breakpad support to mojo shell apk. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 5 years, 5 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 | « shell/android/main.cc ('k') | shell/crash/DEPS » ('j') | shell/crash/DEPS » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/crash/BUILD.gn
diff --git a/shell/crash/BUILD.gn b/shell/crash/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..17b8a4ff0ce6a02bffa08a7ef12f3551efbc034a
--- /dev/null
+++ b/shell/crash/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+if (is_android) {
+ import("//build/config/android/config.gni")
+}
+
+source_set("crash") {
+ sources = []
+
+ if (is_android) {
+ libs = [ "log" ]
+ }
+
+ if (is_android || is_linux) {
+ # Want these files on both Linux and Android.
viettrungluu 2015/07/27 20:28:35 I think you should just go ahead and call these fi
qsr 2015/07/28 08:46:22 Done.
+ set_sources_assignment_filter([])
+ sources += [
+ "breakpad_linux.cc",
+ "breakpad_linux.h",
+ ]
+ }
+
+ deps = [
+ "//base",
+ "//third_party/breakpad:client",
+ ]
+}
« no previous file with comments | « shell/android/main.cc ('k') | shell/crash/DEPS » ('j') | shell/crash/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698