Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: android_webview/BUILD.gn

Issue 1931093002: [Android]Use zh instead of zh-rTW as output folder of zh_TW translation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 "values-sl/android_webview_strings.xml", 728 "values-sl/android_webview_strings.xml",
729 "values-sr/android_webview_strings.xml", 729 "values-sr/android_webview_strings.xml",
730 "values-sv/android_webview_strings.xml", 730 "values-sv/android_webview_strings.xml",
731 "values-sw/android_webview_strings.xml", 731 "values-sw/android_webview_strings.xml",
732 "values-th/android_webview_strings.xml", 732 "values-th/android_webview_strings.xml",
733 "values-tl/android_webview_strings.xml", 733 "values-tl/android_webview_strings.xml",
734 "values-tr/android_webview_strings.xml", 734 "values-tr/android_webview_strings.xml",
735 "values-uk/android_webview_strings.xml", 735 "values-uk/android_webview_strings.xml",
736 "values-vi/android_webview_strings.xml", 736 "values-vi/android_webview_strings.xml",
737 "values-zh-rCN/android_webview_strings.xml", 737 "values-zh-rCN/android_webview_strings.xml",
738 "values-zh-rTW/android_webview_strings.xml", 738 "values-zh/android_webview_strings.xml",
739 "values/android_webview_strings.xml", 739 "values/android_webview_strings.xml",
740 ] 740 ]
741 } 741 }
742 742
743 if (!use_webview_internal_framework) { 743 if (!use_webview_internal_framework) {
744 system_webview_apk_tmpl("system_webview_apk") { 744 system_webview_apk_tmpl("system_webview_apk") {
745 android_manifest = get_target_outputs(":system_webview_manifest") 745 android_manifest = get_target_outputs(":system_webview_manifest")
746 android_manifest = android_manifest[1] 746 android_manifest = android_manifest[1]
747 android_manifest_dep = ":system_webview_manifest" 747 android_manifest_dep = ":system_webview_manifest"
748 deps = [ 748 deps = [
749 ":system_webview_resources", 749 ":system_webview_resources",
750 "//android_webview/glue", 750 "//android_webview/glue",
751 ] 751 ]
752 apk_name = "SystemWebView" 752 apk_name = "SystemWebView"
753 } 753 }
754 } 754 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698