Elliott Hughes | 7ee3a06 | 2010-02-18 17:20:15 -0800 | [diff] [blame] | 1 | # -*- mode: makefile -*- |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 2 | # Copyright (C) 2007 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | # |
| 17 | # Definitions for building the Java library and associated tests. |
| 18 | # |
| 19 | |
| 20 | # |
| 21 | # Common definitions for host and target. |
| 22 | # |
| 23 | |
Jesse Wilson | d5d3526 | 2010-05-12 23:56:14 -0700 | [diff] [blame] | 24 | # libcore is divided into modules. |
| 25 | # |
| 26 | # The structure of each module is: |
| 27 | # |
| 28 | # src/ |
| 29 | # main/ # To be shipped on every device. |
| 30 | # java/ # Java source for library code. |
| 31 | # native/ # C++ source for library code. |
| 32 | # resources/ # Support files. |
| 33 | # test/ # Built only on demand, for testing. |
| 34 | # java/ # Java source for tests. |
| 35 | # native/ # C++ source for tests (rare). |
| 36 | # resources/ # Support files. |
| 37 | # |
| 38 | # All subdirectories are optional (hence the "2> /dev/null"s below). |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 39 | |
Jesse Wilson | 32cfe95 | 2010-05-04 16:36:03 -0700 | [diff] [blame] | 40 | define all-main-java-files-under |
| 41 | $(foreach dir,$(1),$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) && find $(dir)/src/main/java -name "*.java" 2> /dev/null))) |
| 42 | endef |
| 43 | |
| 44 | define all-test-java-files-under |
Brian Carlstrom | 302e330 | 2011-03-01 23:59:06 -0800 | [diff] [blame] | 45 | $(foreach dir,$(1),$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) && find $(dir)/src/test/java -name "*.java" 2> /dev/null))) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 46 | endef |
| 47 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 48 | define all-core-resource-dirs |
| 49 | $(shell cd $(LOCAL_PATH) && ls -d */src/$(1)/{java,resources} 2> /dev/null) |
| 50 | endef |
| 51 | |
Jesse Wilson | d5d3526 | 2010-05-12 23:56:14 -0700 | [diff] [blame] | 52 | # The Java files and their associated resources. |
Jesse Wilson | e590b9c | 2011-01-13 17:20:50 -0800 | [diff] [blame] | 53 | core_src_files := $(call all-main-java-files-under,dalvik dom json luni support xml) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 54 | core_resource_dirs := $(call all-core-resource-dirs,main) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 55 | test_resource_dirs := $(call all-core-resource-dirs,test) |
| 56 | |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 57 | ifeq ($(EMMA_INSTRUMENT),true) |
Ying Wang | ff053c3 | 2012-08-21 17:20:51 -0700 | [diff] [blame] | 58 | ifneq ($(EMMA_INSTRUMENT_STATIC),true) |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 59 | core_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/pregenerated) |
| 60 | core_resource_dirs += ../external/emma/core/res ../external/emma/pregenerated/res |
| 61 | endif |
Ying Wang | ff053c3 | 2012-08-21 17:20:51 -0700 | [diff] [blame] | 62 | endif |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 63 | |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 64 | local_javac_flags=-encoding UTF-8 |
| 65 | #local_javac_flags+=-Xlint:all -Xlint:-serial,-deprecation,-unchecked |
| 66 | local_javac_flags+=-Xmaxwarns 9999999 |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 67 | |
| 68 | # |
| 69 | # Build for the target (device). |
| 70 | # |
| 71 | |
| 72 | # Definitions to make the core library. |
| 73 | |
| 74 | include $(CLEAR_VARS) |
| 75 | |
| 76 | LOCAL_SRC_FILES := $(core_src_files) |
| 77 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
| 78 | |
| 79 | LOCAL_NO_STANDARD_LIBRARIES := true |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 80 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 81 | LOCAL_DX_FLAGS := --core-library |
| 82 | |
Jesse Wilson | 53fbc0a | 2010-09-16 15:46:05 -0700 | [diff] [blame] | 83 | LOCAL_MODULE_TAGS := optional |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 84 | LOCAL_MODULE := core |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 85 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 86 | |
| 87 | include $(BUILD_JAVA_LIBRARY) |
| 88 | |
| 89 | core-intermediates := ${intermediates} |
| 90 | |
| 91 | |
Brian Carlstrom | 302e330 | 2011-03-01 23:59:06 -0800 | [diff] [blame] | 92 | # Make the core-tests library. |
Brian Carlstrom | 51ee38b | 2010-07-23 15:57:52 -0700 | [diff] [blame] | 93 | include $(CLEAR_VARS) |
Brian Carlstrom | 302e330 | 2011-03-01 23:59:06 -0800 | [diff] [blame] | 94 | LOCAL_SRC_FILES := $(call all-test-java-files-under,dalvik dom json luni support xml) |
Brian Carlstrom | 51ee38b | 2010-07-23 15:57:52 -0700 | [diff] [blame] | 95 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
| 96 | LOCAL_NO_STANDARD_LIBRARIES := true |
Brian Carlstrom | 37a816a | 2011-03-18 12:52:04 -0700 | [diff] [blame] | 97 | LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit |
Jesse Wilson | 09336c9 | 2011-06-07 08:08:10 -0700 | [diff] [blame] | 98 | LOCAL_STATIC_JAVA_LIBRARIES := sqlite-jdbc mockwebserver |
Elliott Hughes | d610834 | 2011-02-22 10:13:54 -0800 | [diff] [blame] | 99 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Jesse Wilson | d5d3526 | 2010-05-12 23:56:14 -0700 | [diff] [blame] | 100 | LOCAL_MODULE_TAGS := tests |
Brian Carlstrom | b094af3 | 2010-05-28 17:37:37 -0700 | [diff] [blame] | 101 | LOCAL_MODULE := core-tests |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 102 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Jesse Wilson | 706d535 | 2010-06-08 17:20:09 -0700 | [diff] [blame] | 103 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 104 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 105 | # This one's tricky. One of our tests needs to have a |
| 106 | # resource with a "#" in its name, but Perforce doesn't |
| 107 | # allow us to submit such a file. So we create it here |
| 108 | # on-the-fly. |
Ying Wang | 43624e7 | 2011-06-06 15:34:59 -0700 | [diff] [blame] | 109 | TMP_RESOURCE_DIR := $(intermediates.COMMON)/tmp/ |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 110 | TMP_RESOURCE_FILE := org/apache/harmony/luni/tests/java/lang/test\#.properties |
| 111 | |
| 112 | $(TMP_RESOURCE_DIR)$(TMP_RESOURCE_FILE): |
| 113 | @mkdir -p $(dir $@) |
| 114 | @echo "Hello, world!" > $@ |
| 115 | |
Ying Wang | 43624e7 | 2011-06-06 15:34:59 -0700 | [diff] [blame] | 116 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_EXTRA_JAR_ARGS := $(extra_jar_args) -C "$(TMP_RESOURCE_DIR)" "$(TMP_RESOURCE_FILE)" |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 117 | $(LOCAL_INTERMEDIATE_TARGETS): $(TMP_RESOURCE_DIR)$(TMP_RESOURCE_FILE) |
| 118 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 119 | |
| 120 | # |
| 121 | # Build for the host. |
| 122 | # |
| 123 | |
| 124 | ifeq ($(WITH_HOST_DALVIK),true) |
| 125 | |
| 126 | # Definitions to make the core library. |
| 127 | |
| 128 | include $(CLEAR_VARS) |
| 129 | |
| 130 | LOCAL_SRC_FILES := $(core_src_files) |
| 131 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
| 132 | |
| 133 | LOCAL_NO_STANDARD_LIBRARIES := true |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 134 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 135 | LOCAL_DX_FLAGS := --core-library |
| 136 | |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 137 | LOCAL_BUILD_HOST_DEX := true |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 138 | |
Jean-Baptiste Queru | f267896 | 2010-09-14 13:50:14 -0700 | [diff] [blame] | 139 | LOCAL_MODULE_TAGS := optional |
Jesse Wilson | 53fbc0a | 2010-09-16 15:46:05 -0700 | [diff] [blame] | 140 | LOCAL_MODULE := core-hostdex |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 141 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 142 | |
| 143 | include $(BUILD_HOST_JAVA_LIBRARY) |
| 144 | |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 145 | # Make the core-tests library. |
| 146 | include $(CLEAR_VARS) |
| 147 | LOCAL_SRC_FILES := $(call all-test-java-files-under,dalvik dom json luni support xml) |
| 148 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
| 149 | LOCAL_NO_STANDARD_LIBRARIES := true |
Brian Carlstrom | 37a816a | 2011-03-18 12:52:04 -0700 | [diff] [blame] | 150 | LOCAL_JAVA_LIBRARIES := bouncycastle-hostdex core-hostdex core-junit-hostdex |
Jesse Wilson | 09336c9 | 2011-06-07 08:08:10 -0700 | [diff] [blame] | 151 | LOCAL_STATIC_JAVA_LIBRARIES := sqlite-jdbc-host mockwebserver-hostdex |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 152 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Ying Wang | e79ac58 | 2012-08-23 11:25:27 -0700 | [diff] [blame] | 153 | LOCAL_MODULE_TAGS := optional |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 154 | LOCAL_MODULE := core-tests-hostdex |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 155 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 156 | LOCAL_BUILD_HOST_DEX := true |
| 157 | include $(BUILD_HOST_JAVA_LIBRARY) |
Elliott Hughes | 67cc34b | 2010-02-19 22:14:19 -0800 | [diff] [blame] | 158 | endif |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 159 | |
| 160 | # |
| 161 | # Local droiddoc for faster libcore testing |
| 162 | # |
| 163 | # |
| 164 | # Run with: |
| 165 | # m libcore-docs |
| 166 | # |
| 167 | # Main output: |
| 168 | # out/target/common/docs/libcore/reference/packages.html |
| 169 | # |
| 170 | # All text for proofreading (or running tools over): |
| 171 | # out/target/common/docs/libcore-proofread.txt |
| 172 | # |
| 173 | # TODO list of missing javadoc, etc: |
| 174 | # out/target/common/docs/libcore-docs-todo.html |
| 175 | # |
| 176 | # Rerun: |
| 177 | # rm -rf out/target/common/docs/libcore-timestamp && m libcore-docs |
| 178 | # |
| 179 | include $(CLEAR_VARS) |
| 180 | |
| 181 | # for shared defintion of libcore_to_document |
| 182 | include $(LOCAL_PATH)/Docs.mk |
| 183 | |
Brian Carlstrom | cfa84a2 | 2011-03-24 13:55:02 -0700 | [diff] [blame] | 184 | LOCAL_SRC_FILES:=$(call libcore_to_document,$(LOCAL_PATH)) |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 185 | # rerun doc generation without recompiling the java |
| 186 | LOCAL_JAVA_LIBRARIES:= |
Elliott Hughes | d610834 | 2011-02-22 10:13:54 -0800 | [diff] [blame] | 187 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 188 | LOCAL_MODULE_CLASS:=JAVA_LIBRARIES |
| 189 | |
| 190 | LOCAL_MODULE := libcore |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 191 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 192 | |
| 193 | LOCAL_DROIDDOC_OPTIONS:= \ |
| 194 | -offlinemode \ |
| 195 | -title "libcore" \ |
| 196 | -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ |
| 197 | -todo ../$(LOCAL_MODULE)-docs-todo.html \ |
| 198 | -hdf android.whichdoc offline |
| 199 | |
| 200 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 201 | |
| 202 | include $(BUILD_DROIDDOC) |