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("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 import("system_webview_apk_tmpl.gni") | 9 import("system_webview_apk_tmpl.gni") |
10 import("webview_repack_locales.gni") | 10 import("webview_repack_locales.gni") |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 "java/src/org/chromium/android_webview/policy/AwPolicyProvider.java", | 677 "java/src/org/chromium/android_webview/policy/AwPolicyProvider.java", |
678 ] | 678 ] |
679 deps = [ | 679 deps = [ |
680 ":resources", | 680 ":resources", |
681 ":strings_grd", | 681 ":strings_grd", |
682 "//base:base_java", | 682 "//base:base_java", |
683 "//components/external_video_surface:java", | 683 "//components/external_video_surface:java", |
684 "//components/navigation_interception/android:navigation_interception_java", | 684 "//components/navigation_interception/android:navigation_interception_java", |
685 "//components/web_contents_delegate_android:web_contents_delegate_android_ja
va", | 685 "//components/web_contents_delegate_android:web_contents_delegate_android_ja
va", |
686 "//content/public/android:content_java", | 686 "//content/public/android:content_java", |
| 687 "//device/geolocation:geolocation_java", |
687 "//net/android:net_java", | 688 "//net/android:net_java", |
688 "//ui/android:ui_java", | 689 "//ui/android:ui_java", |
689 ] | 690 ] |
690 | 691 |
691 if (enable_configuration_policy) { | 692 if (enable_configuration_policy) { |
692 deps += [ "//components/policy/android:policy_java" ] | 693 deps += [ "//components/policy/android:policy_java" ] |
693 } | 694 } |
694 | 695 |
695 srcjar_deps = [ "//android_webview/native:aw_permission_request_resource" ] | 696 srcjar_deps = [ "//android_webview/native:aw_permission_request_resource" ] |
696 } | 697 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 android_manifest = get_target_outputs(":system_webview_manifest") | 751 android_manifest = get_target_outputs(":system_webview_manifest") |
751 android_manifest = android_manifest[1] | 752 android_manifest = android_manifest[1] |
752 android_manifest_dep = ":system_webview_manifest" | 753 android_manifest_dep = ":system_webview_manifest" |
753 deps = [ | 754 deps = [ |
754 ":system_webview_resources", | 755 ":system_webview_resources", |
755 "//android_webview/glue", | 756 "//android_webview/glue", |
756 ] | 757 ] |
757 apk_name = "SystemWebView" | 758 apk_name = "SystemWebView" |
758 } | 759 } |
759 } | 760 } |
OLD | NEW |