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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/glue/glue.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//android_webview/system_webview_apk_tmpl.gni") 5 import("//android_webview/system_webview_apk_tmpl.gni")
6 import("//android_webview/webview_repack_locales.gni") 6 import("//android_webview/webview_repack_locales.gni")
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//components/spellcheck/spellcheck_build_features.gni") 10 import("//components/spellcheck/spellcheck_build_features.gni")
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 # android_webview_java. 750 # android_webview_java.
751 android_library("android_webview_platform_services_java") { 751 android_library("android_webview_platform_services_java") {
752 java_files = 752 java_files =
753 [ "java/src/org/chromium/android_webview/PlatformServiceBridge.java" ] 753 [ "java/src/org/chromium/android_webview/PlatformServiceBridge.java" ]
754 754
755 deps = [ 755 deps = [
756 "//base:base_java", 756 "//base:base_java",
757 ] 757 ]
758 } 758 }
759 759
760 android_library("android_webview_commandline_java") {
761 java_files = [ "java/src/org/chromium/android_webview/command_line/CommandLine Util.java" ]
762
763 deps = [
764 "//base:base_java",
765 ]
766 }
767
760 # Keep crash services separate from other WebView code to keep their deps clean 768 # Keep crash services separate from other WebView code to keep their deps clean
761 # (and make them easy to move). 769 # (and make them easy to move).
762 android_library("android_webview_crash_services_java") { 770 android_library("android_webview_crash_services_java") {
763 java_files = [ 771 java_files = [
764 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java", 772 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java",
765 "java/src/org/chromium/android_webview/crash/MinidumpUploaderImpl.java", 773 "java/src/org/chromium/android_webview/crash/MinidumpUploaderImpl.java",
766 "java/src/org/chromium/android_webview/crash/MinidumpUploader.java", 774 "java/src/org/chromium/android_webview/crash/MinidumpUploader.java",
767 "java/src/org/chromium/android_webview/crash/MinidumpUploadJobService.java", 775 "java/src/org/chromium/android_webview/crash/MinidumpUploadJobService.java",
768 ] 776 ]
769 deps = [ 777 deps = [
778 ":android_webview_commandline_java",
779 ":android_webview_platform_services_java",
770 "//base:base_java", 780 "//base:base_java",
771 "//components/minidump_uploader:minidump_uploader_java", 781 "//components/minidump_uploader:minidump_uploader_java",
772 ] 782 ]
773 783
774 srcjar_deps = [ ":crash_receiver_aidl" ] 784 srcjar_deps = [ ":crash_receiver_aidl" ]
775 } 785 }
776 786
777 android_aidl("crash_receiver_aidl") { 787 android_aidl("crash_receiver_aidl") {
778 import_include = "java/src" 788 import_include = "java/src"
779 sources = [ 789 sources = [
780 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl", 790 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl",
781 ] 791 ]
782 } 792 }
783 793
784 if (!use_webview_internal_framework) { 794 if (!use_webview_internal_framework) {
785 system_webview_apk_tmpl("system_webview_apk") { 795 system_webview_apk_tmpl("system_webview_apk") {
786 android_manifest = system_webview_android_manifest 796 android_manifest = system_webview_android_manifest
787 android_manifest_dep = ":system_webview_manifest" 797 android_manifest_dep = ":system_webview_manifest"
788 deps = [ 798 deps = [
789 ":system_webview_resources", 799 ":system_webview_resources",
790 "//android_webview/glue", 800 "//android_webview/glue",
791 ] 801 ]
792 apk_name = "SystemWebView" 802 apk_name = "SystemWebView"
793 } 803 }
794 } 804 }
OLDNEW
« 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