| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 include $(BUILD_STATIC_JAVA_LIBRARY) | 59 include $(BUILD_STATIC_JAVA_LIBRARY) |
| 60 | 60 |
| 61 | 61 |
| 62 ######################################################## | 62 ######################################################## |
| 63 # These packages are the resource paks used by webview. | 63 # These packages are the resource paks used by webview. |
| 64 | 64 |
| 65 include $(CLEAR_VARS) | 65 include $(CLEAR_VARS) |
| 66 LOCAL_MODULE := webviewchromium_pak | 66 LOCAL_MODULE := webviewchromium_pak |
| 67 LOCAL_MODULE_STEM := webviewchromium | 67 LOCAL_MODULE_STEM := webviewchromium |
| 68 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium.pak | 68 LOCAL_BUILT_MODULE_STEM := android_webview_apk/assets/webviewchromium.pak |
| 69 include $(LOCAL_PATH)/webview_pak.mk | 69 include $(LOCAL_PATH)/webview_pak.mk |
| 70 | 70 |
| 71 include $(CLEAR_VARS) | 71 include $(CLEAR_VARS) |
| 72 LOCAL_MODULE := webviewchromium_webkit_strings_am.pak | 72 LOCAL_MODULE := webviewchromium_webkit_strings_am.pak |
| 73 LOCAL_MODULE_STEM := am | 73 LOCAL_MODULE_STEM := am |
| 74 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_am.pak | 74 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_am.pak |
| 75 include $(LOCAL_PATH)/webview_pak.mk | 75 include $(LOCAL_PATH)/webview_pak.mk |
| 76 | 76 |
| 77 include $(CLEAR_VARS) | 77 include $(CLEAR_VARS) |
| 78 LOCAL_MODULE := webviewchromium_webkit_strings_ar.pak | 78 LOCAL_MODULE := webviewchromium_webkit_strings_ar.pak |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak | 378 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak |
| 379 LOCAL_MODULE_STEM := zh-CN | 379 LOCAL_MODULE_STEM := zh-CN |
| 380 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-CN.pak | 380 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-CN.pak |
| 381 include $(LOCAL_PATH)/webview_pak.mk | 381 include $(LOCAL_PATH)/webview_pak.mk |
| 382 | 382 |
| 383 include $(CLEAR_VARS) | 383 include $(CLEAR_VARS) |
| 384 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak | 384 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak |
| 385 LOCAL_MODULE_STEM := zh-TW | 385 LOCAL_MODULE_STEM := zh-TW |
| 386 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-TW.pak | 386 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-TW.pak |
| 387 include $(LOCAL_PATH)/webview_pak.mk | 387 include $(LOCAL_PATH)/webview_pak.mk |
| OLD | NEW |