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

Unified Diff: components/crash/android/BUILD.gn

Issue 2878193002: [Crash Reporting] Implement a more direct bridge for extracting logcat output. (Closed)
Patch Set: Document threading more, and fix check_deps Created 3 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 | « chrome/android/java_sources.gni ('k') | components/crash/android/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/android/BUILD.gn
diff --git a/components/crash/android/BUILD.gn b/components/crash/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..425e96dc66c0e60d9c0fb209f8f10f847e80377e
--- /dev/null
+++ b/components/crash/android/BUILD.gn
@@ -0,0 +1,32 @@
+# Copyright 2017 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.
+
+import("//build/config/android/rules.gni")
+
+_jni_sources =
+ [ "java/src/org/chromium/components/crash/browser/CrashDumpManager.java" ]
+
+generate_jni("jni_headers") {
+ sources = _jni_sources
+ jni_package = "crash"
+}
+
+android_library("java") {
+ deps = [
+ "//base:base_java",
+ ]
+ java_files = _jni_sources
+}
+
+android_library("javatests") {
+ testonly = true
+ deps = [
+ ":java",
+ "//base:base_java",
+ "//base:base_java_test_support",
+ "//third_party/android_support_test_runner:runner_java",
+ "//third_party/junit",
+ ]
+ java_files = [ "javatests/src/org/chromium/components/crash/browser/CrashDumpManagerTest.java" ]
+}
« no previous file with comments | « chrome/android/java_sources.gni ('k') | components/crash/android/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698