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

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/breakpad.h » ('j') | no next file with comments »
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..d2f0d8b062539af148e98ec2002c69f6dd13b1ad
--- /dev/null
+++ b/shell/crash/BUILD.gn
@@ -0,0 +1,23 @@
+# 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 = [
+ "breakpad.cc",
+ "breakpad.h",
+ ]
+
+ if (is_android) {
+ libs = [ "log" ]
+ }
+
+ deps = [
+ "//base",
+ "//third_party/breakpad:client",
+ ]
+}
« no previous file with comments | « shell/android/main.cc ('k') | shell/crash/breakpad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698