| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 # This file defines the name of webviewchromium.pak and the set of locales that | 5 # This file defines the name of webviewchromium.pak and the set of locales that |
| 6 # should be packed inside the System WebView apk, these files also are used in | 6 # should be packed inside the System WebView apk, these files also are used in |
| 7 # downstream. | 7 # downstream. |
| 8 # TODO: consider unifying this list with the one in chrome_android_paks.gypi | 8 # TODO: consider unifying this list with the one in chrome_android_paks.gypi |
| 9 # once Chrome includes all the locales that the WebView needs. | 9 # once Chrome includes all the locales that the WebView needs. |
| 10 { | 10 { |
| 11 'variables': { | 11 'variables': { |
| 12 'webview_licenses_path': '<(PRODUCT_DIR)/android_webview_assets/webview_lice
nses.notice', |
| 12 'webview_chromium_pak_path': '<(PRODUCT_DIR)/android_webview_assets/webviewc
hromium.pak', | 13 'webview_chromium_pak_path': '<(PRODUCT_DIR)/android_webview_assets/webviewc
hromium.pak', |
| 13 'webview_locales_input_paks_folder': '<(PRODUCT_DIR)/android_webview_assets/
locales/', | 14 'webview_locales_input_paks_folder': '<(PRODUCT_DIR)/android_webview_assets/
locales/', |
| 14 # The list of locale are only supported by WebView. | 15 # The list of locale are only supported by WebView. |
| 15 'webview_locales_input_individual_paks': [ | 16 'webview_locales_input_individual_paks': [ |
| 16 '<(webview_locales_input_paks_folder)/bn.pak', | 17 '<(webview_locales_input_paks_folder)/bn.pak', |
| 17 '<(webview_locales_input_paks_folder)/et.pak', | 18 '<(webview_locales_input_paks_folder)/et.pak', |
| 18 '<(webview_locales_input_paks_folder)/gu.pak', | 19 '<(webview_locales_input_paks_folder)/gu.pak', |
| 19 '<(webview_locales_input_paks_folder)/kn.pak', | 20 '<(webview_locales_input_paks_folder)/kn.pak', |
| 20 '<(webview_locales_input_paks_folder)/ml.pak', | 21 '<(webview_locales_input_paks_folder)/ml.pak', |
| 21 '<(webview_locales_input_paks_folder)/mr.pak', | 22 '<(webview_locales_input_paks_folder)/mr.pak', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 '<(webview_locales_input_paks_folder)/th.pak', | 67 '<(webview_locales_input_paks_folder)/th.pak', |
| 67 '<(webview_locales_input_paks_folder)/tr.pak', | 68 '<(webview_locales_input_paks_folder)/tr.pak', |
| 68 '<(webview_locales_input_paks_folder)/uk.pak', | 69 '<(webview_locales_input_paks_folder)/uk.pak', |
| 69 '<(webview_locales_input_paks_folder)/vi.pak', | 70 '<(webview_locales_input_paks_folder)/vi.pak', |
| 70 '<(webview_locales_input_paks_folder)/zh-CN.pak', | 71 '<(webview_locales_input_paks_folder)/zh-CN.pak', |
| 71 '<(webview_locales_input_paks_folder)/zh-TW.pak', | 72 '<(webview_locales_input_paks_folder)/zh-TW.pak', |
| 72 ], | 73 ], |
| 73 }, | 74 }, |
| 74 } | 75 } |
| 75 | 76 |
| OLD | NEW |