OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 package provides the parts of the WebView java code which live in the | 5 # This package provides the parts of the WebView java code which live in the |
6 # Chromium tree. This is built into a static library so it can be used by the | 6 # Chromium tree. This is built into a static library so it can be used by the |
7 # glue layer in the Android tree. | 7 # glue layer in the Android tree. |
8 | 8 |
9 LOCAL_PATH := $(call my-dir) | 9 LOCAL_PATH := $(call my-dir) |
10 include $(CLEAR_VARS) | 10 include $(CLEAR_VARS) |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 # Depend on the android_webview_strings target to ensure the grd->string.xml | 50 # Depend on the android_webview_strings target to ensure the grd->string.xml |
51 # processing takes place. | 51 # processing takes place. |
52 $(R_file_stamp): $(android_webview_resources_stamp) | 52 $(R_file_stamp): $(android_webview_resources_stamp) |
53 | 53 |
54 ######################################################## | 54 ######################################################## |
55 # These packages are the resource paks used by webview. | 55 # These packages are the resource paks used by webview. |
56 | 56 |
57 include $(CLEAR_VARS) | 57 include $(CLEAR_VARS) |
58 LOCAL_MODULE := webviewchromium_pak | 58 LOCAL_MODULE := webviewchromium_pak |
59 LOCAL_MODULE_STEM := webviewchromium | 59 LOCAL_MODULE_STEM := webviewchromium |
60 LOCAL_BUILT_MODULE_STEM := android_webview_apk/assets/webviewchromium.pak | 60 LOCAL_BUILT_MODULE_STEM := android_webview_assets/webviewchromium.pak |
61 include $(LOCAL_PATH)/webview_pak.mk | 61 include $(LOCAL_PATH)/webview_pak.mk |
62 | 62 |
63 include $(CLEAR_VARS) | 63 include $(CLEAR_VARS) |
64 LOCAL_MODULE := webviewchromium_webkit_strings_am.pak | 64 LOCAL_MODULE := webviewchromium_webkit_strings_am.pak |
65 LOCAL_MODULE_STEM := am | 65 LOCAL_MODULE_STEM := am |
66 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_am.pak | 66 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_am.pak |
67 include $(LOCAL_PATH)/webview_pak.mk | 67 include $(LOCAL_PATH)/webview_pak.mk |
68 | 68 |
69 include $(CLEAR_VARS) | 69 include $(CLEAR_VARS) |
70 LOCAL_MODULE := webviewchromium_webkit_strings_ar.pak | 70 LOCAL_MODULE := webviewchromium_webkit_strings_ar.pak |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak | 370 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak |
371 LOCAL_MODULE_STEM := zh-CN | 371 LOCAL_MODULE_STEM := zh-CN |
372 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_zh-CN.pak | 372 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_zh-CN.pak |
373 include $(LOCAL_PATH)/webview_pak.mk | 373 include $(LOCAL_PATH)/webview_pak.mk |
374 | 374 |
375 include $(CLEAR_VARS) | 375 include $(CLEAR_VARS) |
376 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak | 376 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak |
377 LOCAL_MODULE_STEM := zh-TW | 377 LOCAL_MODULE_STEM := zh-TW |
378 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_zh-TW.pak | 378 LOCAL_BUILT_MODULE_STEM := content/app/strings/content_strings_zh-TW.pak |
379 include $(LOCAL_PATH)/webview_pak.mk | 379 include $(LOCAL_PATH)/webview_pak.mk |
OLD | NEW |