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", |
+ ] |
+} |