| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 "//base:base_java", | 615 "//base:base_java", |
| 616 "//components/autofill/android:autofill_java", | 616 "//components/autofill/android:autofill_java", |
| 617 "//components/navigation_interception/android:navigation_interception_java", | 617 "//components/navigation_interception/android:navigation_interception_java", |
| 618 "//components/web_contents_delegate_android:web_contents_delegate_android_ja
va", | 618 "//components/web_contents_delegate_android:web_contents_delegate_android_ja
va", |
| 619 "//components/web_restrictions:web_restrictions_java", | 619 "//components/web_restrictions:web_restrictions_java", |
| 620 "//content/public/android:content_java", | 620 "//content/public/android:content_java", |
| 621 "//device/geolocation:geolocation_java", | 621 "//device/geolocation:geolocation_java", |
| 622 "//net/android:net_java", | 622 "//net/android:net_java", |
| 623 "//third_party/android_tools:android_support_annotations_java", | 623 "//third_party/android_tools:android_support_annotations_java", |
| 624 "//ui/android:ui_java", | 624 "//ui/android:ui_java", |
| 625 google_play_services_library, |
| 626 google_play_services_resources, |
| 625 ] | 627 ] |
| 626 | 628 |
| 627 if (enable_configuration_policy) { | 629 if (enable_configuration_policy) { |
| 628 deps += [ "//components/policy/android:policy_java" ] | 630 deps += [ "//components/policy/android:policy_java" ] |
| 629 } | 631 } |
| 630 | 632 |
| 631 if (enable_spellcheck) { | 633 if (enable_spellcheck) { |
| 632 deps += [ "//components/spellcheck/browser/android:java" ] | 634 deps += [ "//components/spellcheck/browser/android:java" ] |
| 633 } | 635 } |
| 634 | 636 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 system_webview_apk_tmpl("system_webview_apk") { | 691 system_webview_apk_tmpl("system_webview_apk") { |
| 690 android_manifest = system_webview_android_manifest | 692 android_manifest = system_webview_android_manifest |
| 691 android_manifest_dep = ":system_webview_manifest" | 693 android_manifest_dep = ":system_webview_manifest" |
| 692 deps = [ | 694 deps = [ |
| 693 ":system_webview_resources", | 695 ":system_webview_resources", |
| 694 "//android_webview/glue", | 696 "//android_webview/glue", |
| 695 ] | 697 ] |
| 696 apk_name = "SystemWebView" | 698 apk_name = "SystemWebView" |
| 697 } | 699 } |
| 698 } | 700 } |
| OLD | NEW |