| 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("//tools/resources/generate_resource_whitelist.gni") | 9 import("//tools/resources/generate_resource_whitelist.gni") |
| 10 import("system_webview_apk_tmpl.gni") | 10 import("system_webview_apk_tmpl.gni") |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 "//components/version_info", | 493 "//components/version_info", |
| 494 "//components/visitedlink/browser", | 494 "//components/visitedlink/browser", |
| 495 "//components/visitedlink/renderer", | 495 "//components/visitedlink/renderer", |
| 496 "//components/web_contents_delegate_android:web_contents_delegate_android", | 496 "//components/web_contents_delegate_android:web_contents_delegate_android", |
| 497 "//components/web_restrictions:browser", | 497 "//components/web_restrictions:browser", |
| 498 "//content", | 498 "//content", |
| 499 "//content/public/app:both", | 499 "//content/public/app:both", |
| 500 "//content/public/browser", | 500 "//content/public/browser", |
| 501 "//crypto", | 501 "//crypto", |
| 502 "//gin", | 502 "//gin", |
| 503 "//gpu/command_buffer/client:gl_in_process_context", | |
| 504 "//gpu/command_buffer/client:gles2_c_lib", | 503 "//gpu/command_buffer/client:gles2_c_lib", |
| 505 "//gpu/command_buffer/client:gles2_implementation", | 504 "//gpu/command_buffer/client:gles2_implementation", |
| 506 "//gpu/command_buffer/common:gles2_utils", | 505 "//gpu/command_buffer/common:gles2_utils", |
| 507 "//gpu/command_buffer/service", | 506 "//gpu/command_buffer/service", |
| 507 "//gpu/ipc:gl_in_process_context", |
| 508 "//gpu/skia_bindings", | 508 "//gpu/skia_bindings", |
| 509 "//media", | 509 "//media", |
| 510 "//media/midi", | 510 "//media/midi", |
| 511 "//net:extras", | 511 "//net:extras", |
| 512 "//printing", | 512 "//printing", |
| 513 "//skia", | 513 "//skia", |
| 514 "//third_party/WebKit/public:blink", | 514 "//third_party/WebKit/public:blink", |
| 515 "//ui/events:gesture_detection", | 515 "//ui/events:gesture_detection", |
| 516 "//ui/gl", | 516 "//ui/gl", |
| 517 "//ui/gl/init", | 517 "//ui/gl/init", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 system_webview_apk_tmpl("system_webview_apk") { | 684 system_webview_apk_tmpl("system_webview_apk") { |
| 685 android_manifest = system_webview_android_manifest | 685 android_manifest = system_webview_android_manifest |
| 686 android_manifest_dep = ":system_webview_manifest" | 686 android_manifest_dep = ":system_webview_manifest" |
| 687 deps = [ | 687 deps = [ |
| 688 ":system_webview_resources", | 688 ":system_webview_resources", |
| 689 "//android_webview/glue", | 689 "//android_webview/glue", |
| 690 ] | 690 ] |
| 691 apk_name = "SystemWebView" | 691 apk_name = "SystemWebView" |
| 692 } | 692 } |
| 693 } | 693 } |
| OLD | NEW |