| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 "java/res/values-sl/components_strings.xml", | 364 "java/res/values-sl/components_strings.xml", |
| 365 "java/res/values-sr/components_strings.xml", | 365 "java/res/values-sr/components_strings.xml", |
| 366 "java/res/values-sv/components_strings.xml", | 366 "java/res/values-sv/components_strings.xml", |
| 367 "java/res/values-sw/components_strings.xml", | 367 "java/res/values-sw/components_strings.xml", |
| 368 "java/res/values-th/components_strings.xml", | 368 "java/res/values-th/components_strings.xml", |
| 369 "java/res/values-tl/components_strings.xml", | 369 "java/res/values-tl/components_strings.xml", |
| 370 "java/res/values-tr/components_strings.xml", | 370 "java/res/values-tr/components_strings.xml", |
| 371 "java/res/values-uk/components_strings.xml", | 371 "java/res/values-uk/components_strings.xml", |
| 372 "java/res/values-vi/components_strings.xml", | 372 "java/res/values-vi/components_strings.xml", |
| 373 "java/res/values-zh-rCN/components_strings.xml", | 373 "java/res/values-zh-rCN/components_strings.xml", |
| 374 "java/res/values-zh/components_strings.xml", | 374 "java/res/values-zh-rTW/components_strings.xml", |
| 375 "java/res/values/components_strings.xml", | 375 "java/res/values/components_strings.xml", |
| 376 ] | 376 ] |
| 377 } | 377 } |
| 378 | 378 |
| 379 source_set("webview_entry_point") { | 379 source_set("webview_entry_point") { |
| 380 deps = [ | 380 deps = [ |
| 381 ":common", | 381 ":common", |
| 382 ] | 382 ] |
| 383 sources = [ | 383 sources = [ |
| 384 "lib/main/webview_entry_point.cc", | 384 "lib/main/webview_entry_point.cc", |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 "values-sl/android_webview_strings.xml", | 771 "values-sl/android_webview_strings.xml", |
| 772 "values-sr/android_webview_strings.xml", | 772 "values-sr/android_webview_strings.xml", |
| 773 "values-sv/android_webview_strings.xml", | 773 "values-sv/android_webview_strings.xml", |
| 774 "values-sw/android_webview_strings.xml", | 774 "values-sw/android_webview_strings.xml", |
| 775 "values-th/android_webview_strings.xml", | 775 "values-th/android_webview_strings.xml", |
| 776 "values-tl/android_webview_strings.xml", | 776 "values-tl/android_webview_strings.xml", |
| 777 "values-tr/android_webview_strings.xml", | 777 "values-tr/android_webview_strings.xml", |
| 778 "values-uk/android_webview_strings.xml", | 778 "values-uk/android_webview_strings.xml", |
| 779 "values-vi/android_webview_strings.xml", | 779 "values-vi/android_webview_strings.xml", |
| 780 "values-zh-rCN/android_webview_strings.xml", | 780 "values-zh-rCN/android_webview_strings.xml", |
| 781 "values-zh/android_webview_strings.xml", | 781 "values-zh-rTW/android_webview_strings.xml", |
| 782 "values/android_webview_strings.xml", | 782 "values/android_webview_strings.xml", |
| 783 ] | 783 ] |
| 784 } | 784 } |
| 785 | 785 |
| 786 if (!use_webview_internal_framework) { | 786 if (!use_webview_internal_framework) { |
| 787 system_webview_apk_tmpl("system_webview_apk") { | 787 system_webview_apk_tmpl("system_webview_apk") { |
| 788 android_manifest = get_target_outputs(":system_webview_manifest") | 788 android_manifest = get_target_outputs(":system_webview_manifest") |
| 789 android_manifest = android_manifest[1] | 789 android_manifest = android_manifest[1] |
| 790 android_manifest_dep = ":system_webview_manifest" | 790 android_manifest_dep = ":system_webview_manifest" |
| 791 deps = [ | 791 deps = [ |
| 792 ":system_webview_resources", | 792 ":system_webview_resources", |
| 793 "//android_webview/glue", | 793 "//android_webview/glue", |
| 794 ] | 794 ] |
| 795 apk_name = "SystemWebView" | 795 apk_name = "SystemWebView" |
| 796 } | 796 } |
| 797 } | 797 } |
| OLD | NEW |