| OLD | NEW |
| 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 "//base:base_java", | 769 "//base:base_java", |
| 770 ] | 770 ] |
| 771 } | 771 } |
| 772 | 772 |
| 773 # Keep crash services separate from other WebView code to keep their deps clean | 773 # Keep crash services separate from other WebView code to keep their deps clean |
| 774 # (and make them easy to move). | 774 # (and make them easy to move). |
| 775 android_library("android_webview_crash_services_java") { | 775 android_library("android_webview_crash_services_java") { |
| 776 java_files = [ | 776 java_files = [ |
| 777 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java", | 777 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java", |
| 778 "java/src/org/chromium/android_webview/crash/MinidumpUploaderImpl.java", | 778 "java/src/org/chromium/android_webview/crash/MinidumpUploaderImpl.java", |
| 779 "java/src/org/chromium/android_webview/crash/MinidumpUploader.java", | |
| 780 "java/src/org/chromium/android_webview/crash/MinidumpUploadJobService.java", | 779 "java/src/org/chromium/android_webview/crash/MinidumpUploadJobService.java", |
| 781 ] | 780 ] |
| 782 deps = [ | 781 deps = [ |
| 783 ":android_webview_commandline_java", | 782 ":android_webview_commandline_java", |
| 784 ":android_webview_platform_services_java", | 783 ":android_webview_platform_services_java", |
| 785 "//base:base_java", | 784 "//base:base_java", |
| 786 "//components/minidump_uploader:minidump_uploader_java", | 785 "//components/minidump_uploader:minidump_uploader_java", |
| 787 ] | 786 ] |
| 788 | 787 |
| 789 srcjar_deps = [ ":crash_receiver_aidl" ] | 788 srcjar_deps = [ ":crash_receiver_aidl" ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 800 system_webview_apk_tmpl("system_webview_apk") { | 799 system_webview_apk_tmpl("system_webview_apk") { |
| 801 android_manifest = system_webview_android_manifest | 800 android_manifest = system_webview_android_manifest |
| 802 android_manifest_dep = ":system_webview_manifest" | 801 android_manifest_dep = ":system_webview_manifest" |
| 803 deps = [ | 802 deps = [ |
| 804 ":system_webview_resources", | 803 ":system_webview_resources", |
| 805 "//android_webview/glue", | 804 "//android_webview/glue", |
| 806 ] | 805 ] |
| 807 apk_name = "SystemWebView" | 806 apk_name = "SystemWebView" |
| 808 } | 807 } |
| 809 } | 808 } |
| OLD | NEW |