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. |
Brian Carlstrom | 8ff94c7 | 2013-08-29 15:08:41 -0700 | [diff] [blame] | 53 | common_core_src_files := $(call all-main-java-files-under,dalvik dex dom json luni 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) |
Narayan Kamath | 51525b5 | 2013-11-15 18:02:54 +0000 | [diff] [blame] | 56 | test_src_files := $(call all-test-java-files-under,dalvik dom harmony-tests json luni xml) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 57 | |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 58 | ifeq ($(EMMA_INSTRUMENT),true) |
Ying Wang | ff053c3 | 2012-08-21 17:20:51 -0700 | [diff] [blame] | 59 | ifneq ($(EMMA_INSTRUMENT_STATIC),true) |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 60 | common_core_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/pregenerated) |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 61 | core_resource_dirs += ../external/emma/core/res ../external/emma/pregenerated/res |
| 62 | endif |
Ying Wang | ff053c3 | 2012-08-21 17:20:51 -0700 | [diff] [blame] | 63 | endif |
Jesse Wilson | 7898a91 | 2010-09-13 15:42:41 -0700 | [diff] [blame] | 64 | |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 65 | libdvm_core_src_files += $(common_core_src_files) $(call all-main-java-files-under,libdvm) |
| 66 | libart_core_src_files += $(common_core_src_files) $(call all-main-java-files-under,libart) |
| 67 | |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 68 | local_javac_flags=-encoding UTF-8 |
| 69 | #local_javac_flags+=-Xlint:all -Xlint:-serial,-deprecation,-unchecked |
| 70 | local_javac_flags+=-Xmaxwarns 9999999 |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 71 | |
| 72 | # |
| 73 | # Build for the target (device). |
| 74 | # |
| 75 | |
| 76 | # Definitions to make the core library. |
| 77 | |
| 78 | include $(CLEAR_VARS) |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 79 | LOCAL_SRC_FILES := $(libdvm_core_src_files) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 80 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 81 | LOCAL_NO_STANDARD_LIBRARIES := true |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 82 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 83 | LOCAL_DX_FLAGS := --core-library |
Jesse Wilson | 53fbc0a | 2010-09-16 15:46:05 -0700 | [diff] [blame] | 84 | LOCAL_MODULE_TAGS := optional |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 85 | LOCAL_MODULE := core |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 86 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Elliott Hughes | 055fe87 | 2012-10-18 11:26:48 -0700 | [diff] [blame] | 87 | LOCAL_REQUIRED_MODULES := tzdata |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 88 | include $(BUILD_JAVA_LIBRARY) |
| 89 | |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 90 | include $(CLEAR_VARS) |
| 91 | LOCAL_SRC_FILES := $(libart_core_src_files) |
| 92 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
| 93 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 94 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
| 95 | LOCAL_DX_FLAGS := --core-library |
| 96 | LOCAL_MODULE_TAGS := optional |
| 97 | LOCAL_MODULE := core-libart |
| 98 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
| 99 | LOCAL_REQUIRED_MODULES := tzdata |
Brian Carlstrom | 7aaf90e | 2013-12-11 11:01:55 -0800 | [diff] [blame] | 100 | # Should not be dex-preopted as it isn't really a Dalvik boot jar or a |
| 101 | # regular java library, but part of the image for ART. |
| 102 | LOCAL_DEX_PREOPT := false |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 103 | include $(BUILD_JAVA_LIBRARY) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 104 | |
Kenny Root | 38375a4 | 2013-04-23 15:50:31 -0700 | [diff] [blame] | 105 | ifeq ($(LIBCORE_SKIP_TESTS),) |
| 106 | # Make the core-tests library. |
| 107 | include $(CLEAR_VARS) |
Narayan Kamath | 51525b5 | 2013-11-15 18:02:54 +0000 | [diff] [blame] | 108 | LOCAL_SRC_FILES := $(test_src_files) |
Brian Carlstrom | 51ee38b | 2010-07-23 15:57:52 -0700 | [diff] [blame] | 109 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
| 110 | LOCAL_NO_STANDARD_LIBRARIES := true |
Kenny Root | 55dcd97 | 2013-08-29 14:31:12 -0700 | [diff] [blame] | 111 | LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit okhttp |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 112 | LOCAL_STATIC_JAVA_LIBRARIES := core-tests-support sqlite-jdbc mockwebserver nist-pkix-tests okhttp-tests |
Elliott Hughes | d610834 | 2011-02-22 10:13:54 -0800 | [diff] [blame] | 113 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Brian Carlstrom | b094af3 | 2010-05-28 17:37:37 -0700 | [diff] [blame] | 114 | LOCAL_MODULE := core-tests |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 115 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Jesse Wilson | 706d535 | 2010-06-08 17:20:09 -0700 | [diff] [blame] | 116 | include $(BUILD_STATIC_JAVA_LIBRARY) |
Elliott Hughes | c5cd6e8 | 2012-10-18 18:13:10 -0700 | [diff] [blame] | 117 | endif |
Jesse Wilson | 706d535 | 2010-06-08 17:20:09 -0700 | [diff] [blame] | 118 | |
Tsu Chiang Chuang | 808558f | 2013-08-21 11:46:49 -0700 | [diff] [blame] | 119 | ifeq ($(LIBCORE_SKIP_TESTS),) |
Kenny Root | b397b19 | 2013-08-29 14:24:47 -0700 | [diff] [blame] | 120 | # Make the core-tests-support library. |
| 121 | include $(CLEAR_VARS) |
| 122 | LOCAL_SRC_FILES := $(call all-test-java-files-under,support) |
| 123 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
| 124 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 125 | LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit |
Kenny Root | b397b19 | 2013-08-29 14:24:47 -0700 | [diff] [blame] | 126 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Kenny Root | b397b19 | 2013-08-29 14:24:47 -0700 | [diff] [blame] | 127 | LOCAL_MODULE := core-tests-support |
| 128 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
| 129 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 130 | endif |
| 131 | |
| 132 | ifeq ($(LIBCORE_SKIP_TESTS),) |
Tsu Chiang Chuang | 808558f | 2013-08-21 11:46:49 -0700 | [diff] [blame] | 133 | # Make the jsr166-tests library. |
| 134 | include $(CLEAR_VARS) |
| 135 | LOCAL_SRC_FILES := $(call all-test-java-files-under, jsr166-tests) |
| 136 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
| 137 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 138 | LOCAL_JAVA_LIBRARIES := core core-junit |
| 139 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
| 140 | LOCAL_MODULE := jsr166-tests |
| 141 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
| 142 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 143 | endif |
| 144 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 145 | # This one's tricky. One of our tests needs to have a |
| 146 | # resource with a "#" in its name, but Perforce doesn't |
| 147 | # allow us to submit such a file. So we create it here |
| 148 | # on-the-fly. |
Ying Wang | 43624e7 | 2011-06-06 15:34:59 -0700 | [diff] [blame] | 149 | TMP_RESOURCE_DIR := $(intermediates.COMMON)/tmp/ |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 150 | TMP_RESOURCE_FILE := org/apache/harmony/luni/tests/java/lang/test\#.properties |
| 151 | |
| 152 | $(TMP_RESOURCE_DIR)$(TMP_RESOURCE_FILE): |
| 153 | @mkdir -p $(dir $@) |
| 154 | @echo "Hello, world!" > $@ |
| 155 | |
Ying Wang | 43624e7 | 2011-06-06 15:34:59 -0700 | [diff] [blame] | 156 | $(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] | 157 | $(LOCAL_INTERMEDIATE_TARGETS): $(TMP_RESOURCE_DIR)$(TMP_RESOURCE_FILE) |
| 158 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 159 | |
| 160 | # |
| 161 | # Build for the host. |
| 162 | # |
| 163 | |
Tsu Chiang Chuang | 25963ae | 2013-07-23 16:39:20 -0700 | [diff] [blame] | 164 | include $(CLEAR_VARS) |
| 165 | LOCAL_SRC_FILES := $(call all-main-java-files-under, dex) |
| 166 | LOCAL_MODULE_TAGS := optional |
| 167 | LOCAL_MODULE := dex-host |
| 168 | include $(BUILD_HOST_JAVA_LIBRARY) |
| 169 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 170 | ifeq ($(WITH_HOST_DALVIK),true) |
| 171 | |
| 172 | # Definitions to make the core library. |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 173 | include $(CLEAR_VARS) |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 174 | LOCAL_SRC_FILES := $(libdvm_core_src_files) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 175 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 176 | LOCAL_NO_STANDARD_LIBRARIES := true |
Elliott Hughes | 48d0b3f | 2010-12-14 09:48:52 -0800 | [diff] [blame] | 177 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 178 | LOCAL_DX_FLAGS := --core-library |
Jean-Baptiste Queru | f267896 | 2010-09-14 13:50:14 -0700 | [diff] [blame] | 179 | LOCAL_MODULE_TAGS := optional |
Jesse Wilson | 53fbc0a | 2010-09-16 15:46:05 -0700 | [diff] [blame] | 180 | LOCAL_MODULE := core-hostdex |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 181 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Elliott Hughes | 055fe87 | 2012-10-18 11:26:48 -0700 | [diff] [blame] | 182 | LOCAL_REQUIRED_MODULES := tzdata-host |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 183 | include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 184 | |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 185 | include $(CLEAR_VARS) |
| 186 | LOCAL_SRC_FILES := $(libart_core_src_files) |
| 187 | LOCAL_JAVA_RESOURCE_DIRS := $(core_resource_dirs) |
| 188 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 189 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
| 190 | LOCAL_DX_FLAGS := --core-library |
Brian Carlstrom | 3711c21 | 2013-06-25 15:59:29 -0700 | [diff] [blame] | 191 | LOCAL_MODULE_TAGS := optional |
| 192 | LOCAL_MODULE := core-libart-hostdex |
| 193 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
| 194 | LOCAL_REQUIRED_MODULES := tzdata-host |
Brian Carlstrom | 7aaf90e | 2013-12-11 11:01:55 -0800 | [diff] [blame] | 195 | # Should not be dex-preopted as it isn't really a Dalvik boot jar or a |
| 196 | # regular java library, but part of the image for ART. |
| 197 | LOCAL_DEX_PREOPT := false |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 198 | include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 199 | |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 200 | # Make the core-tests library. |
Elliott Hughes | c5cd6e8 | 2012-10-18 18:13:10 -0700 | [diff] [blame] | 201 | ifeq ($(LIBCORE_SKIP_TESTS),) |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 202 | include $(CLEAR_VARS) |
Narayan Kamath | 51525b5 | 2013-11-15 18:02:54 +0000 | [diff] [blame] | 203 | LOCAL_SRC_FILES := $(test_src_files) |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 204 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 205 | LOCAL_JAVA_LIBRARIES := bouncycastle-hostdex core-junit-hostdex core-tests-support-hostdex okhttp-hostdex |
Brian Carlstrom | 22a12c9 | 2013-01-17 16:18:31 -0800 | [diff] [blame] | 206 | LOCAL_STATIC_JAVA_LIBRARIES := sqlite-jdbc-host mockwebserver-host nist-pkix-tests-host |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 207 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Ying Wang | e79ac58 | 2012-08-23 11:25:27 -0700 | [diff] [blame] | 208 | LOCAL_MODULE_TAGS := optional |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 209 | LOCAL_MODULE := core-tests-hostdex |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 210 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 211 | include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
Elliott Hughes | c5cd6e8 | 2012-10-18 18:13:10 -0700 | [diff] [blame] | 212 | endif |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 213 | |
| 214 | # Make the core-tests-support library. |
| 215 | ifeq ($(LIBCORE_SKIP_TESTS),) |
| 216 | include $(CLEAR_VARS) |
| 217 | LOCAL_SRC_FILES := $(call all-test-java-files-under,support) |
| 218 | LOCAL_JAVA_RESOURCE_DIRS := $(test_resource_dirs) |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 219 | LOCAL_JAVA_LIBRARIES := bouncycastle-hostdex core-junit-hostdex |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 220 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
| 221 | LOCAL_MODULE_TAGS := optional |
| 222 | LOCAL_MODULE := core-tests-support-hostdex |
| 223 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Narayan Kamath | 70e8ce8 | 2013-10-28 14:17:35 +0000 | [diff] [blame] | 224 | include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 225 | endif |
Elliott Hughes | 67cc34b | 2010-02-19 22:14:19 -0800 | [diff] [blame] | 226 | endif |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 227 | |
| 228 | # |
| 229 | # Local droiddoc for faster libcore testing |
| 230 | # |
| 231 | # |
| 232 | # Run with: |
Elliott Hughes | 92fc63e | 2013-02-07 17:05:57 -0800 | [diff] [blame] | 233 | # mm -j32 libcore-docs |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 234 | # |
| 235 | # Main output: |
Elliott Hughes | 92fc63e | 2013-02-07 17:05:57 -0800 | [diff] [blame] | 236 | # ../out/target/common/docs/libcore/reference/packages.html |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 237 | # |
| 238 | # All text for proofreading (or running tools over): |
Elliott Hughes | 92fc63e | 2013-02-07 17:05:57 -0800 | [diff] [blame] | 239 | # ../out/target/common/docs/libcore-proofread.txt |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 240 | # |
| 241 | # TODO list of missing javadoc, etc: |
Elliott Hughes | 92fc63e | 2013-02-07 17:05:57 -0800 | [diff] [blame] | 242 | # ../out/target/common/docs/libcore-docs-todo.html |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 243 | # |
| 244 | # Rerun: |
Elliott Hughes | 92fc63e | 2013-02-07 17:05:57 -0800 | [diff] [blame] | 245 | # rm -rf ../out/target/common/docs/libcore-timestamp && mm -j32 libcore-docs |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 246 | # |
| 247 | include $(CLEAR_VARS) |
| 248 | |
| 249 | # for shared defintion of libcore_to_document |
| 250 | include $(LOCAL_PATH)/Docs.mk |
| 251 | |
Ying Wang | 21ac42d | 2013-12-04 15:54:36 -0800 | [diff] [blame] | 252 | LOCAL_SRC_FILES := $(libcore_to_document) |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 253 | # rerun doc generation without recompiling the java |
| 254 | LOCAL_JAVA_LIBRARIES:= |
Elliott Hughes | d610834 | 2011-02-22 10:13:54 -0800 | [diff] [blame] | 255 | LOCAL_JAVACFLAGS := $(local_javac_flags) |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 256 | LOCAL_MODULE_CLASS:=JAVA_LIBRARIES |
| 257 | |
| 258 | LOCAL_MODULE := libcore |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 259 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/JavaLibrary.mk |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 260 | |
Elliott Hughes | b986327 | 2012-11-08 14:28:29 -0800 | [diff] [blame] | 261 | LOCAL_DROIDDOC_OPTIONS := \ |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 262 | -offlinemode \ |
| 263 | -title "libcore" \ |
| 264 | -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ |
| 265 | -todo ../$(LOCAL_MODULE)-docs-todo.html \ |
| 266 | -hdf android.whichdoc offline |
| 267 | |
| 268 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 269 | |
| 270 | include $(BUILD_DROIDDOC) |