| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "java/res/values-sl/components_strings.xml", | 346 "java/res/values-sl/components_strings.xml", |
| 347 "java/res/values-sr/components_strings.xml", | 347 "java/res/values-sr/components_strings.xml", |
| 348 "java/res/values-sv/components_strings.xml", | 348 "java/res/values-sv/components_strings.xml", |
| 349 "java/res/values-sw/components_strings.xml", | 349 "java/res/values-sw/components_strings.xml", |
| 350 "java/res/values-th/components_strings.xml", | 350 "java/res/values-th/components_strings.xml", |
| 351 "java/res/values-tl/components_strings.xml", | 351 "java/res/values-tl/components_strings.xml", |
| 352 "java/res/values-tr/components_strings.xml", | 352 "java/res/values-tr/components_strings.xml", |
| 353 "java/res/values-uk/components_strings.xml", | 353 "java/res/values-uk/components_strings.xml", |
| 354 "java/res/values-vi/components_strings.xml", | 354 "java/res/values-vi/components_strings.xml", |
| 355 "java/res/values-zh-rCN/components_strings.xml", | 355 "java/res/values-zh-rCN/components_strings.xml", |
| 356 "java/res/values-zh-rTW/components_strings.xml", | 356 "java/res/values-zh/components_strings.xml", |
| 357 "java/res/values/components_strings.xml", | 357 "java/res/values/components_strings.xml", |
| 358 ] | 358 ] |
| 359 } | 359 } |
| 360 | 360 |
| 361 source_set("webview_entry_point") { | 361 source_set("webview_entry_point") { |
| 362 deps = [ | 362 deps = [ |
| 363 ":common", | 363 ":common", |
| 364 ] | 364 ] |
| 365 sources = [ | 365 sources = [ |
| 366 "lib/main/webview_entry_point.cc", | 366 "lib/main/webview_entry_point.cc", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 "values-sl/android_webview_strings.xml", | 727 "values-sl/android_webview_strings.xml", |
| 728 "values-sr/android_webview_strings.xml", | 728 "values-sr/android_webview_strings.xml", |
| 729 "values-sv/android_webview_strings.xml", | 729 "values-sv/android_webview_strings.xml", |
| 730 "values-sw/android_webview_strings.xml", | 730 "values-sw/android_webview_strings.xml", |
| 731 "values-th/android_webview_strings.xml", | 731 "values-th/android_webview_strings.xml", |
| 732 "values-tl/android_webview_strings.xml", | 732 "values-tl/android_webview_strings.xml", |
| 733 "values-tr/android_webview_strings.xml", | 733 "values-tr/android_webview_strings.xml", |
| 734 "values-uk/android_webview_strings.xml", | 734 "values-uk/android_webview_strings.xml", |
| 735 "values-vi/android_webview_strings.xml", | 735 "values-vi/android_webview_strings.xml", |
| 736 "values-zh-rCN/android_webview_strings.xml", | 736 "values-zh-rCN/android_webview_strings.xml", |
| 737 "values-zh-rTW/android_webview_strings.xml", | 737 "values-zh/android_webview_strings.xml", |
| 738 "values/android_webview_strings.xml", | 738 "values/android_webview_strings.xml", |
| 739 ] | 739 ] |
| 740 } | 740 } |
| 741 | 741 |
| 742 if (!use_webview_internal_framework) { | 742 if (!use_webview_internal_framework) { |
| 743 system_webview_apk_tmpl("system_webview_apk") { | 743 system_webview_apk_tmpl("system_webview_apk") { |
| 744 android_manifest = get_target_outputs(":system_webview_manifest") | 744 android_manifest = get_target_outputs(":system_webview_manifest") |
| 745 android_manifest = android_manifest[1] | 745 android_manifest = android_manifest[1] |
| 746 android_manifest_dep = ":system_webview_manifest" | 746 android_manifest_dep = ":system_webview_manifest" |
| 747 deps = [ | 747 deps = [ |
| 748 ":system_webview_resources", | 748 ":system_webview_resources", |
| 749 "//android_webview/glue", | 749 "//android_webview/glue", |
| 750 ] | 750 ] |
| 751 apk_name = "SystemWebView" | 751 apk_name = "SystemWebView" |
| 752 } | 752 } |
| 753 } | 753 } |
| OLD | NEW |