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

Unified Diff: android_webview/BUILD.gn

Issue 2655023008: [Android WebView] Ensure Android Checkbox is on when uploading minidumps (Closed)
Patch Set: Rebase Created 3 years, 10 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 | « no previous file | android_webview/glue/glue.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/BUILD.gn
diff --git a/android_webview/BUILD.gn b/android_webview/BUILD.gn
index 0e7bb13febf83e58e469caba503f87b561875adf..2d3b3cf0362330102d2a6cc3125814b6e3501036 100644
--- a/android_webview/BUILD.gn
+++ b/android_webview/BUILD.gn
@@ -757,6 +757,14 @@ android_library("android_webview_platform_services_java") {
]
}
+android_library("android_webview_commandline_java") {
+ java_files = [ "java/src/org/chromium/android_webview/command_line/CommandLineUtil.java" ]
+
+ deps = [
+ "//base:base_java",
+ ]
+}
+
# Keep crash services separate from other WebView code to keep their deps clean
# (and make them easy to move).
android_library("android_webview_crash_services_java") {
@@ -767,6 +775,8 @@ android_library("android_webview_crash_services_java") {
"java/src/org/chromium/android_webview/crash/MinidumpUploadJobService.java",
]
deps = [
+ ":android_webview_commandline_java",
+ ":android_webview_platform_services_java",
"//base:base_java",
"//components/minidump_uploader:minidump_uploader_java",
]
« no previous file with comments | « no previous file | android_webview/glue/glue.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698