| 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 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 android_library("android_webview_crash_services_java") { | 786 android_library("android_webview_crash_services_java") { |
| 787 java_files = [ | 787 java_files = [ |
| 788 "java/src/org/chromium/android_webview/crash/AwMinidumpUploadJobService.java
", | 788 "java/src/org/chromium/android_webview/crash/AwMinidumpUploadJobService.java
", |
| 789 "java/src/org/chromium/android_webview/crash/AwMinidumpUploaderDelegate.java
", | 789 "java/src/org/chromium/android_webview/crash/AwMinidumpUploaderDelegate.java
", |
| 790 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java", | 790 "java/src/org/chromium/android_webview/crash/CrashReceiverService.java", |
| 791 ] | 791 ] |
| 792 deps = [ | 792 deps = [ |
| 793 ":android_webview_commandline_java", | 793 ":android_webview_commandline_java", |
| 794 ":android_webview_platform_services_java", | 794 ":android_webview_platform_services_java", |
| 795 "//base:base_java", | 795 "//base:base_java", |
| 796 "//components/background_task_scheduler:background_task_scheduler_java", |
| 796 "//components/minidump_uploader:minidump_uploader_java", | 797 "//components/minidump_uploader:minidump_uploader_java", |
| 797 ] | 798 ] |
| 798 | 799 |
| 799 srcjar_deps = [ ":crash_receiver_aidl" ] | 800 srcjar_deps = [ ":crash_receiver_aidl" ] |
| 800 } | 801 } |
| 801 | 802 |
| 802 android_aidl("crash_receiver_aidl") { | 803 android_aidl("crash_receiver_aidl") { |
| 803 import_include = "java/src" | 804 import_include = "java/src" |
| 804 sources = [ | 805 sources = [ |
| 805 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl", | 806 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl", |
| 806 ] | 807 ] |
| 807 } | 808 } |
| 808 | 809 |
| 809 if (!use_webview_internal_framework) { | 810 if (!use_webview_internal_framework) { |
| 810 system_webview_apk_tmpl("system_webview_apk") { | 811 system_webview_apk_tmpl("system_webview_apk") { |
| 811 android_manifest = system_webview_android_manifest | 812 android_manifest = system_webview_android_manifest |
| 812 android_manifest_dep = ":system_webview_manifest" | 813 android_manifest_dep = ":system_webview_manifest" |
| 813 deps = [ | 814 deps = [ |
| 814 ":system_webview_resources", | 815 ":system_webview_resources", |
| 815 "//android_webview/glue", | 816 "//android_webview/glue", |
| 816 ] | 817 ] |
| 817 apk_name = "SystemWebView" | 818 apk_name = "SystemWebView" |
| 818 } | 819 } |
| 819 } | 820 } |
| OLD | NEW |