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 19 matching lines...) Expand all Loading... |
30 $(call all-java-files-under, ../net/android/java/src) \ | 30 $(call all-java-files-under, ../net/android/java/src) \ |
31 $(call all-java-files-under, ../ui/android/java/src) \ | 31 $(call all-java-files-under, ../ui/android/java/src) \ |
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 # Generated by net.gyp:net_errors_java and certificate_mime_types_java. | 40 # Generated by net.gyp:net_errors_java, net.gyp:certificate_mime_types_java, |
| 41 # and content.gyp:page_transition_types_java |
41 LOCAL_GENERATED_SOURCES := \ | 42 LOCAL_GENERATED_SOURCES := \ |
| 43 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.content.browser/
PageTransitionTypes.java \ |
42 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/CertificateM
imeType.java \ | 44 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/CertificateM
imeType.java \ |
43 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/NetError.jav
a | 45 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/NetError.jav
a |
44 | 46 |
45 | 47 |
46 include $(BUILD_STATIC_JAVA_LIBRARY) | 48 include $(BUILD_STATIC_JAVA_LIBRARY) |
47 | 49 |
48 | 50 |
49 ######################################################## | 51 ######################################################## |
50 # These packages are the resource paks used by webview. | 52 # These packages are the resource paks used by webview. |
51 | 53 |
52 include $(CLEAR_VARS) | 54 include $(CLEAR_VARS) |
53 LOCAL_MODULE := webviewchromium_pak | 55 LOCAL_MODULE := webviewchromium_pak |
54 LOCAL_MODULE_STEM := webviewchromium | 56 LOCAL_MODULE_STEM := webviewchromium |
55 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium.pak | 57 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium.pak |
56 include $(LOCAL_PATH)/webview_pak.mk | 58 include $(LOCAL_PATH)/webview_pak.mk |
57 | 59 |
58 # TODO(benm): remove when we get all our strings from java. | 60 # TODO(benm): remove when we get all our strings from java. |
59 include $(CLEAR_VARS) | 61 include $(CLEAR_VARS) |
60 LOCAL_MODULE := webviewchromium_strings_pak | 62 LOCAL_MODULE := webviewchromium_strings_pak |
61 LOCAL_MODULE_STEM := webviewchromium_strings | 63 LOCAL_MODULE_STEM := webviewchromium_strings |
62 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium_strings.pak | 64 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium_strings.pak |
63 include $(LOCAL_PATH)/webview_pak.mk | 65 include $(LOCAL_PATH)/webview_pak.mk |
OLD | NEW |