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 and certificate_mime_types_java. |
Yaron
2012/12/14 03:34:21
update comment
boliu
2012/12/14 05:57:36
Done.
| |
41 LOCAL_GENERATED_SOURCES := \ | 41 LOCAL_GENERATED_SOURCES := \ |
42 $(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 \ | 43 $(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 | 44 $(call intermediates-dir-for,GYP,shared)/templates/org.chromium.net/NetError.jav a |
44 | 45 |
45 | 46 |
46 include $(BUILD_STATIC_JAVA_LIBRARY) | 47 include $(BUILD_STATIC_JAVA_LIBRARY) |
47 | 48 |
48 | 49 |
49 ######################################################## | 50 ######################################################## |
50 # These packages are the resource paks used by webview. | 51 # These packages are the resource paks used by webview. |
51 | 52 |
52 include $(CLEAR_VARS) | 53 include $(CLEAR_VARS) |
53 LOCAL_MODULE := webviewchromium_pak | 54 LOCAL_MODULE := webviewchromium_pak |
54 LOCAL_MODULE_STEM := webviewchromium | 55 LOCAL_MODULE_STEM := webviewchromium |
55 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium.pak | 56 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium.pak |
56 include $(LOCAL_PATH)/webview_pak.mk | 57 include $(LOCAL_PATH)/webview_pak.mk |
57 | 58 |
58 # TODO(benm): remove when we get all our strings from java. | 59 # TODO(benm): remove when we get all our strings from java. |
59 include $(CLEAR_VARS) | 60 include $(CLEAR_VARS) |
60 LOCAL_MODULE := webviewchromium_strings_pak | 61 LOCAL_MODULE := webviewchromium_strings_pak |
61 LOCAL_MODULE_STEM := webviewchromium_strings | 62 LOCAL_MODULE_STEM := webviewchromium_strings |
62 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium_strings.pak | 63 LOCAL_BUILT_MODULE_STEM := android_webview/assets/webviewchromium_strings.pak |
63 include $(LOCAL_PATH)/webview_pak.mk | 64 include $(LOCAL_PATH)/webview_pak.mk |
OLD | NEW |