| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "//gpu/command_buffer/service", | 582 "//gpu/command_buffer/service", |
| 583 "//gpu/skia_bindings", | 583 "//gpu/skia_bindings", |
| 584 "//media", | 584 "//media", |
| 585 "//media/midi", | 585 "//media/midi", |
| 586 "//net:extras", | 586 "//net:extras", |
| 587 "//printing", | 587 "//printing", |
| 588 "//skia", | 588 "//skia", |
| 589 "//third_party/WebKit/public:blink", | 589 "//third_party/WebKit/public:blink", |
| 590 "//ui/events:gesture_detection", | 590 "//ui/events:gesture_detection", |
| 591 "//ui/gl", | 591 "//ui/gl", |
| 592 "//ui/gl/init", |
| 592 "//ui/shell_dialogs", | 593 "//ui/shell_dialogs", |
| 593 "//v8", | 594 "//v8", |
| 594 ] | 595 ] |
| 595 | 596 |
| 596 if (enable_configuration_policy) { | 597 if (enable_configuration_policy) { |
| 597 deps += [ | 598 deps += [ |
| 598 "//components/policy", | 599 "//components/policy", |
| 599 "//components/policy:policy_component", | 600 "//components/policy:policy_component", |
| 600 ] | 601 ] |
| 601 } | 602 } |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 android_manifest = get_target_outputs(":system_webview_manifest") | 745 android_manifest = get_target_outputs(":system_webview_manifest") |
| 745 android_manifest = android_manifest[1] | 746 android_manifest = android_manifest[1] |
| 746 android_manifest_dep = ":system_webview_manifest" | 747 android_manifest_dep = ":system_webview_manifest" |
| 747 deps = [ | 748 deps = [ |
| 748 ":system_webview_resources", | 749 ":system_webview_resources", |
| 749 "//android_webview/glue", | 750 "//android_webview/glue", |
| 750 ] | 751 ] |
| 751 apk_name = "SystemWebView" | 752 apk_name = "SystemWebView" |
| 752 } | 753 } |
| 753 } | 754 } |
| OLD | NEW |