| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 # browser components | 33 # browser components |
| 34 LOCAL_SRC_FILES += \ | 34 LOCAL_SRC_FILES += \ |
| 35 $(call all-java-files-under, \ | 35 $(call all-java-files-under, \ |
| 36 ../content/components/web_contents_delegate_android/java/src) \ | 36 ../content/components/web_contents_delegate_android/java/src) \ |
| 37 $(call all-java-files-under, \ | 37 $(call all-java-files-under, \ |
| 38 ../content/components/navigation_interception/java/src) \ | 38 ../content/components/navigation_interception/java/src) \ |
| 39 | 39 |
| 40 # This file is generated by net.gyp:net_errors_java | 40 # This file is generated by net.gyp:net_errors_java |
| 41 LOCAL_GENERATED_SOURCES := \ | 41 LOCAL_GENERATED_SOURCES := \ |
| 42 $(call intermediates-dir-for,GYP,shared)/template/org.chromium.net/NetError.java | 42 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/NetError.jav
a |
| 43 | 43 |
| 44 include $(BUILD_STATIC_JAVA_LIBRARY) | 44 include $(BUILD_STATIC_JAVA_LIBRARY) |
| 45 | 45 |
| 46 | 46 |
| 47 ######################################################## | 47 ######################################################## |
| 48 # These packages are the resource paks used by webview. | 48 # These packages are the resource paks used by webview. |
| 49 | 49 |
| 50 include $(CLEAR_VARS) | 50 include $(CLEAR_VARS) |
| 51 LOCAL_MODULE := webviewchromium_pak | 51 LOCAL_MODULE := webviewchromium_pak |
| 52 LOCAL_MODULE_STEM := webviewchromium | 52 LOCAL_MODULE_STEM := webviewchromium |
| (...skipping 18 matching lines...) Expand all Loading... |
| 71 LOCAL_MODULE := webviewchromium_res_chrome_100_percent | 71 LOCAL_MODULE := webviewchromium_res_chrome_100_percent |
| 72 LOCAL_MODULE_STEM := chrome_100_percent | 72 LOCAL_MODULE_STEM := chrome_100_percent |
| 73 include $(LOCAL_PATH)/webview_pak.mk | 73 include $(LOCAL_PATH)/webview_pak.mk |
| 74 | 74 |
| 75 # TODO(torne): add other locales (filtered by PRODUCT_LOCALES?) | 75 # TODO(torne): add other locales (filtered by PRODUCT_LOCALES?) |
| 76 include $(CLEAR_VARS) | 76 include $(CLEAR_VARS) |
| 77 LOCAL_MODULE := webviewchromium_res_en-US | 77 LOCAL_MODULE := webviewchromium_res_en-US |
| 78 LOCAL_MODULE_STEM := en-US | 78 LOCAL_MODULE_STEM := en-US |
| 79 LOCAL_BUILT_MODULE_STEM := locales/en-US.pak | 79 LOCAL_BUILT_MODULE_STEM := locales/en-US.pak |
| 80 include $(LOCAL_PATH)/webview_pak.mk | 80 include $(LOCAL_PATH)/webview_pak.mk |
| OLD | NEW |