blob: a984a0fdd5b47496b42194aaf6cba162362285e7 [file] [log] [blame]
Bart Searsa8cc0582015-05-07 03:23:20 +00001#
2# Copyright (C) 2008 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#
16LOCAL_PATH := $(call my-dir)
17
Colin Crosscf3a0b52017-11-16 00:15:28 -080018# Load framework-specific path mappings used later in the build.
19include $(LOCAL_PATH)/pathmap.mk
Bart Searsa8cc0582015-05-07 03:23:20 +000020
21# Build the master framework library.
22# The framework contains too many method references (>64K) for poor old DEX.
23# So we first build the framework as a monolithic static library then split it
24# up into smaller pieces.
25# ============================================================
26
27# embedded builds use nothing in frameworks/base
28ifneq ($(ANDROID_BUILD_EMBEDDED),true)
29
Bart Searsa8cc0582015-05-07 03:23:20 +000030# Copy AIDL files to be preprocessed and included in the SDK,
31# specified relative to the root of the build tree.
32# ============================================================
33include $(CLEAR_VARS)
34
Colin Cross77ebd082017-12-15 17:30:33 -080035aidl_parcelables :=
36define stubs-to-aidl-parcelables
37 gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/$1.aidl
38 aidl_parcelables += $$(gen)
Colin Crossfdbe7d12018-02-09 11:24:14 -080039 $$(gen): $(call java-lib-header-files,$1) $(HOST_OUT_EXECUTABLES)/sdkparcelables
Colin Cross77ebd082017-12-15 17:30:33 -080040 @echo Extract SDK parcelables: $$@
41 rm -f $$@
42 $(HOST_OUT_EXECUTABLES)/sdkparcelables $$< $$@
43endef
44
45$(foreach stubs,android_stubs_current android_test_stubs_current android_system_stubs_current,\
46 $(eval $(call stubs-to-aidl-parcelables,$(stubs))))
47
Bart Searsa8cc0582015-05-07 03:23:20 +000048gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
Colin Cross77ebd082017-12-15 17:30:33 -080049.KATI_RESTAT: $(gen)
50$(gen): $(aidl_parcelables)
51 @echo Combining SDK parcelables: $@
52 rm -f $@.tmp
53 cat $^ | sort -u > $@.tmp
54 $(call commit-change-for-toc,$@)
Bart Searsa8cc0582015-05-07 03:23:20 +000055
56# the documentation
57# ============================================================
58
59# TODO: deal with com/google/android/googleapps
60packages_to_document := \
Colin Crosscf3a0b52017-11-16 00:15:28 -080061 android \
62 javax/microedition/khronos \
63 org/apache/http/conn \
64 org/apache/http/params \
Bart Searsa8cc0582015-05-07 03:23:20 +000065
66# include definition of libcore_to_document
67include libcore/Docs.mk
68
Bart Searsa8cc0582015-05-07 03:23:20 +000069non_base_dirs := \
Colin Crosscf3a0b52017-11-16 00:15:28 -080070 ../opt/telephony/src/java/android/telephony \
71 ../opt/telephony/src/java/android/telephony/gsm \
72 ../opt/net/voip/src/java/android/net/rtp \
73 ../opt/net/voip/src/java/android/net/sip \
Bart Searsa8cc0582015-05-07 03:23:20 +000074
Colin Crosscf3a0b52017-11-16 00:15:28 -080075# Find all files in specific directories (relative to frameworks/base)
76# to document and check apis
77files_to_check_apis := \
78 $(call find-other-java-files, \
Colin Crosscf3a0b52017-11-16 00:15:28 -080079 $(non_base_dirs) \
80 )
Bart Searsa8cc0582015-05-07 03:23:20 +000081
Colin Crosscf3a0b52017-11-16 00:15:28 -080082# Find all files in specific packages that were used to compile
83# framework.jar to document and check apis
84files_to_check_apis += \
85 $(addprefix ../../,\
86 $(filter \
87 $(foreach dir,$(FRAMEWORKS_BASE_JAVA_SRC_DIRS),\
88 $(foreach package,$(packages_to_document),\
89 $(dir)/$(package)/%.java)),\
90 $(SOONG_FRAMEWORK_SRCS)))
91
92# Find all generated files that were used to compile framework.jar
Colin Crossbd200ce2017-12-04 13:45:19 -080093files_to_check_apis_generated := \
94 $(filter $(OUT_DIR)/%,\
95 $(SOONG_FRAMEWORK_SRCS))
George Mountf6be9932015-12-03 07:39:55 -080096
Bart Searsa8cc0582015-05-07 03:23:20 +000097# These are relative to frameworks/base
98# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
Colin Crosscf3a0b52017-11-16 00:15:28 -080099files_to_document := \
100 $(files_to_check_apis) \
101 $(call find-other-java-files,\
Paul Duffin187a48d2017-12-13 14:34:31 +0000102 test-base/src \
Paul Duffin9f6282d2017-12-15 15:49:08 +0000103 test-mock/src \
Colin Crosscf3a0b52017-11-16 00:15:28 -0800104 test-runner/src)
George Mountf6be9932015-12-03 07:39:55 -0800105
Bart Searsa8cc0582015-05-07 03:23:20 +0000106# These are relative to frameworks/base
107html_dirs := \
108 $(FRAMEWORKS_BASE_SUBDIRS) \
Colin Crosscf3a0b52017-11-16 00:15:28 -0800109 $(non_base_dirs) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000110
111# Common sources for doc check and api check
112common_src_files := \
113 $(call find-other-html-files, $(html_dirs)) \
Colin Crosscf3a0b52017-11-16 00:15:28 -0800114 $(addprefix ../../, $(libcore_to_document)) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000115
116# These are relative to frameworks/base
117framework_docs_LOCAL_SRC_FILES := \
Colin Crosscf3a0b52017-11-16 00:15:28 -0800118 $(files_to_document) \
119 $(common_src_files) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000120
121# These are relative to frameworks/base
122framework_docs_LOCAL_API_CHECK_SRC_FILES := \
Colin Crosscf3a0b52017-11-16 00:15:28 -0800123 $(files_to_check_apis) \
124 $(common_src_files) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000125
126# This is used by ide.mk as the list of source files that are
127# always included.
128INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
129
130framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
131 $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
132
Colin Crosscf3a0b52017-11-16 00:15:28 -0800133framework_docs_LOCAL_SRCJARS := $(SOONG_FRAMEWORK_SRCJARS)
134
Colin Crossbd200ce2017-12-04 13:45:19 -0800135framework_docs_LOCAL_GENERATED_SOURCES := \
136 $(libcore_to_document_generated) \
137 $(files_to_check_apis_generated) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000138
139framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES := \
Piotr Jastrzebskicfa292e2015-02-17 16:58:52 +0000140 core-oj \
Bart Searsa8cc0582015-05-07 03:23:20 +0000141 core-libart \
142 conscrypt \
143 bouncycastle \
144 okhttp \
145 ext \
146 framework \
Paul Duffinc08090f2017-06-29 14:58:43 +0100147 voip-common \
Bart Searsa8cc0582015-05-07 03:23:20 +0000148
Alan Viverette9ca513e2017-04-05 10:21:58 -0400149# Platform docs can refer to Support Library APIs, but we don't actually build
150# them as part of the docs target, so we need to include them on the classpath.
Bart Searsa8cc0582015-05-07 03:23:20 +0000151framework_docs_LOCAL_JAVA_LIBRARIES := \
152 $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) \
153 $(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES)
154
155framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
156framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
157# The since flag (-since N.xml API_LEVEL) is used to add API Level information
158# to the reference documentation. Must be in order of oldest to newest.
159#
160# Conscrypt (com.android.org.conscrypt) is an implementation detail and should
161# not be referenced in the documentation.
162framework_docs_LOCAL_DROIDDOC_OPTIONS := \
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600163 -android \
Bart Searsa8cc0582015-05-07 03:23:20 +0000164 -knowntags ./frameworks/base/docs/knowntags.txt \
Narayan Kamath2c4f2842015-07-27 14:02:11 +0100165 -knowntags ./libcore/known_oj_tags.txt \
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -0600166 -manifest ./frameworks/base/core/res/AndroidManifest.xml \
Tobias Thiererdda16e82018-03-05 22:55:32 +0000167 -hidePackage com.android.internal \
168 -hidePackage com.android.internal.util \
Neil Fuller57157fb2017-11-24 15:58:38 +0000169 -hidePackage com.android.okhttp \
Bart Searsa8cc0582015-05-07 03:23:20 +0000170 -hidePackage com.android.org.conscrypt \
Neil Fuller371c08c2017-11-27 10:32:07 +0000171 -hidePackage com.android.server \
Bart Searsa8cc0582015-05-07 03:23:20 +0000172 -since $(SRC_API_DIR)/1.xml 1 \
173 -since $(SRC_API_DIR)/2.xml 2 \
174 -since $(SRC_API_DIR)/3.xml 3 \
175 -since $(SRC_API_DIR)/4.xml 4 \
176 -since $(SRC_API_DIR)/5.xml 5 \
177 -since $(SRC_API_DIR)/6.xml 6 \
178 -since $(SRC_API_DIR)/7.xml 7 \
179 -since $(SRC_API_DIR)/8.xml 8 \
180 -since $(SRC_API_DIR)/9.xml 9 \
181 -since $(SRC_API_DIR)/10.xml 10 \
182 -since $(SRC_API_DIR)/11.xml 11 \
183 -since $(SRC_API_DIR)/12.xml 12 \
184 -since $(SRC_API_DIR)/13.xml 13 \
185 -since $(SRC_API_DIR)/14.txt 14 \
186 -since $(SRC_API_DIR)/15.txt 15 \
187 -since $(SRC_API_DIR)/16.txt 16 \
188 -since $(SRC_API_DIR)/17.txt 17 \
189 -since $(SRC_API_DIR)/18.txt 18 \
190 -since $(SRC_API_DIR)/19.txt 19 \
191 -since $(SRC_API_DIR)/20.txt 20 \
192 -since $(SRC_API_DIR)/21.txt 21 \
193 -since $(SRC_API_DIR)/22.txt 22 \
Joe Fernandez1827e322015-08-12 19:45:22 -0700194 -since $(SRC_API_DIR)/23.txt 23 \
Dirk Dougherty5f60f7c2016-06-14 16:26:28 -0700195 -since $(SRC_API_DIR)/24.txt 24 \
Dirk Dougherty3376f582016-10-14 10:27:08 -0700196 -since $(SRC_API_DIR)/25.txt 25 \
Dirk Doughertyfdad0ba2017-06-09 14:43:32 -0700197 -since $(SRC_API_DIR)/26.txt 26 \
Andrew Solovaya6019b22017-10-06 14:27:20 -0700198 -since $(SRC_API_DIR)/27.txt 27 \
Anton Hansson092d9b82018-04-19 14:04:32 +0100199 -since $(SRC_API_DIR)/28.txt 28 \
Jeff Sharkeyc204c222017-11-27 15:02:10 -0700200 -werror -lerror -hide 111 -hide 113 -hide 125 -hide 126 -hide 127 -hide 128 \
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600201 -overview $(LOCAL_PATH)/core/java/overview.html \
Bart Searsa8cc0582015-05-07 03:23:20 +0000202
203framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR:= \
204 $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
205
206framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= \
Alan Viverette9ca513e2017-04-05 10:21:58 -0400207 $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
Bart Searsa8cc0582015-05-07 03:23:20 +0000208
209framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
Narayan Kamathc21739a2015-07-14 13:39:23 +0100210 frameworks/base/docs/knowntags.txt \
Colin Cross72d359f2017-10-27 10:46:53 -0700211 $(libcore_to_document_generated)
Bart Searsa8cc0582015-05-07 03:23:20 +0000212
213samples_dir := development/samples/browseable
214
215# Whitelist of valid groups, used for default TOC grouping. Each sample must
216# belong to one (and only one) group. Assign samples to groups by setting
217# a sample.group var to one of these groups in the sample's _index.jd.
218sample_groups := -samplegroup Admin \
219 -samplegroup Background \
220 -samplegroup Connectivity \
221 -samplegroup Content \
222 -samplegroup Input \
223 -samplegroup Media \
224 -samplegroup Notification \
225 -samplegroup RenderScript \
226 -samplegroup Security \
227 -samplegroup Sensors \
Trevor Johns4cbe3592015-05-27 14:50:51 -0700228 -samplegroup System \
Bart Searsa8cc0582015-05-07 03:23:20 +0000229 -samplegroup Testing \
230 -samplegroup UI \
231 -samplegroup Views \
232 -samplegroup Wearable
233
234## SDK version identifiers used in the published docs
235 # major[.minor] version for current SDK. (full releases only)
smain@google.comdde8deb2016-08-29 18:36:50 -0700236framework_docs_SDK_VERSION:=7.0
Bart Searsa8cc0582015-05-07 03:23:20 +0000237 # release version (ie "Release x") (full releases only)
238framework_docs_SDK_REL_ID:=1
239
240framework_docs_LOCAL_DROIDDOC_OPTIONS += \
Billy Lamberta75dbc8f2017-03-03 13:09:15 -0800241 -hdf dac true \
Scott Mainf8cdfc82017-03-21 13:43:31 -0700242 -hdf sdk.codename O \
243 -hdf sdk.preview.version 1 \
Bart Searsa8cc0582015-05-07 03:23:20 +0000244 -hdf sdk.version $(framework_docs_SDK_VERSION) \
245 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
Scott Mainf8cdfc82017-03-21 13:43:31 -0700246 -hdf sdk.preview 0 \
247 -resourcesdir $(LOCAL_PATH)/docs/html/reference/images/ \
248 -resourcesoutdir reference/android/images/
Bart Searsa8cc0582015-05-07 03:23:20 +0000249
Alan Viverette9ca513e2017-04-05 10:21:58 -0400250# Federate Support Library references against local API file.
251framework_docs_LOCAL_DROIDDOC_OPTIONS += \
252 -federate SupportLib https://developer.android.com \
253 -federationapi SupportLib prebuilts/sdk/current/support-api.txt
254
Alan Viverette67b51d42018-03-28 17:10:20 -0400255# Federate AndroidX references against local API file.
256framework_docs_LOCAL_DROIDDOC_OPTIONS += \
257 -federate AndroidX https://developer.android.com \
258 -federationapi AndroidX prebuilts/sdk/current/androidx-api.txt
259
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700260# ==== Public API diff ===========================
Alan Viverette6b7354c2017-07-13 17:10:14 -0400261include $(CLEAR_VARS)
262
263LOCAL_SRC_FILES := $(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800264LOCAL_GENERATED_SOURCES := $(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800265LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Alan Viverette6b7354c2017-07-13 17:10:14 -0400266LOCAL_JAVA_LIBRARIES := $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
267LOCAL_MODULE_CLASS := $(framework_docs_LOCAL_MODULE_CLASS)
268LOCAL_ADDITIONAL_JAVA_DIR := $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
269LOCAL_ADDITIONAL_DEPENDENCIES := \
270 $(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) \
271 $(INTERNAL_PLATFORM_API_FILE)
272
273LOCAL_MODULE := offline-sdk-referenceonly
274
275last_released_sdk_version := $(lastword $(call numerically_sort, \
276 $(filter-out current, \
277 $(patsubst $(SRC_API_DIR)/%.txt,%, $(wildcard $(SRC_API_DIR)/*.txt)) \
278 )\
279 ))
280
281LOCAL_APIDIFF_OLDAPI := $(LOCAL_PATH)/../../$(SRC_API_DIR)/$(last_released_sdk_version)
282LOCAL_APIDIFF_NEWAPI := $(LOCAL_PATH)/../../$(basename $(INTERNAL_PLATFORM_API_FILE))
283
284include $(BUILD_APIDIFF)
285
Jeff Sharkeyc8dc2542017-12-08 14:52:37 -0700286# Hack to get diffs included in docs output
287out_zip := $(OUT_DOCS)/$(LOCAL_MODULE)-docs.zip
288$(out_zip): $(full_target)
289
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700290# ==== System API diff ===========================
291include $(CLEAR_VARS)
292
293LOCAL_SRC_FILES := $(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800294LOCAL_GENERATED_SOURCES := $(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800295LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700296LOCAL_JAVA_LIBRARIES := $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
297LOCAL_MODULE_CLASS := $(framework_docs_LOCAL_MODULE_CLASS)
298LOCAL_ADDITIONAL_JAVA_DIR := $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
299LOCAL_ADDITIONAL_DEPENDENCIES := \
300 $(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) \
301 $(INTERNAL_PLATFORM_SYSTEM_API_FILE)
302
303LOCAL_MODULE := offline-system-sdk-referenceonly
304
305last_released_sdk_version := $(lastword $(call numerically_sort, \
306 $(filter-out current, \
307 $(patsubst $(SRC_SYSTEM_API_DIR)/%.txt,%, $(wildcard $(SRC_SYSTEM_API_DIR)/*.txt)) \
308 )\
309 ))
310
311LOCAL_APIDIFF_OLDAPI := $(LOCAL_PATH)/../../$(SRC_SYSTEM_API_DIR)/$(last_released_sdk_version)
312LOCAL_APIDIFF_NEWAPI := $(LOCAL_PATH)/../../$(basename $(INTERNAL_PLATFORM_SYSTEM_API_FILE))
313
314include $(BUILD_APIDIFF)
315
Jeff Sharkeyc8dc2542017-12-08 14:52:37 -0700316# Hack to get diffs included in docs output
317out_zip := $(OUT_DOCS)/$(LOCAL_MODULE)-docs.zip
318$(out_zip): $(full_target)
319
Bart Searsa8cc0582015-05-07 03:23:20 +0000320# ==== the api stubs and current.xml ===========================
321include $(CLEAR_VARS)
322
323LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800324LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800325LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000326LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
327LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
328LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
329LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
330LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
331LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
332
333LOCAL_MODULE := api-stubs
334
Ying Wang0f92a2e2015-07-16 14:20:22 -0700335LOCAL_DROIDDOC_STUB_OUT_DIR := $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src
336
Bart Searsa8cc0582015-05-07 03:23:20 +0000337LOCAL_DROIDDOC_OPTIONS:=\
338 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700339 -referenceonly \
Bart Searsa8cc0582015-05-07 03:23:20 +0000340 -api $(INTERNAL_PLATFORM_API_FILE) \
341 -removedApi $(INTERNAL_PLATFORM_REMOVED_API_FILE) \
342 -nodocs
343
Scott Main15b85172017-02-21 14:30:58 -0800344LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000345
346LOCAL_UNINSTALLABLE_MODULE := true
347
348include $(BUILD_DROIDDOC)
349
David Brazdila793f3f2018-01-16 15:03:20 +0000350$(full_target): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_PLATFORM_API_FILE) \
David Brazdil68e1c1d2018-03-08 14:32:27 +0000351 $(INTERNAL_PLATFORM_REMOVED_API_FILE)
Bart Searsa8cc0582015-05-07 03:23:20 +0000352$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
353
354# ==== the system api stubs ===================================
355include $(CLEAR_VARS)
356
357LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800358LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800359LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000360LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
361LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
362LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
363LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
364LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
365LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
366
367LOCAL_MODULE := system-api-stubs
368
Ying Wang0f92a2e2015-07-16 14:20:22 -0700369LOCAL_DROIDDOC_STUB_OUT_DIR := $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_system_stubs_current_intermediates/src
370
Bart Searsa8cc0582015-05-07 03:23:20 +0000371LOCAL_DROIDDOC_OPTIONS:=\
372 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700373 -referenceonly \
Bart Searsa8cc0582015-05-07 03:23:20 +0000374 -showAnnotation android.annotation.SystemApi \
375 -api $(INTERNAL_PLATFORM_SYSTEM_API_FILE) \
376 -removedApi $(INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE) \
Jeff Sharkey05461c02017-05-09 19:01:09 -0600377 -exactApi $(INTERNAL_PLATFORM_SYSTEM_EXACT_API_FILE) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000378 -nodocs
379
Scott Main15b85172017-02-21 14:30:58 -0800380LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000381
382LOCAL_UNINSTALLABLE_MODULE := true
383
384include $(BUILD_DROIDDOC)
385
David Brazdila793f3f2018-01-16 15:03:20 +0000386$(full_target): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_PLATFORM_SYSTEM_API_FILE) \
David Brazdil68e1c1d2018-03-08 14:32:27 +0000387 $(INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE) \
388 $(INTERNAL_PLATFORM_SYSTEM_EXACT_API_FILE)
Bart Searsa8cc0582015-05-07 03:23:20 +0000389$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_SYSTEM_API_FILE))
390
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000391# ==== the test api stubs ===================================
392include $(CLEAR_VARS)
393
394LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800395LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800396LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000397LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
398LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
399LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
400LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
401LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
402LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
403
404LOCAL_MODULE := test-api-stubs
405
406LOCAL_DROIDDOC_STUB_OUT_DIR := $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_test_stubs_current_intermediates/src
407
408LOCAL_DROIDDOC_OPTIONS:=\
409 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700410 -referenceonly \
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000411 -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_test_stubs_current_intermediates/src \
412 -showAnnotation android.annotation.TestApi \
413 -api $(INTERNAL_PLATFORM_TEST_API_FILE) \
414 -removedApi $(INTERNAL_PLATFORM_TEST_REMOVED_API_FILE) \
Jeff Sharkey05461c02017-05-09 19:01:09 -0600415 -exactApi $(INTERNAL_PLATFORM_TEST_EXACT_API_FILE) \
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000416 -nodocs
417
Scott Main15b85172017-02-21 14:30:58 -0800418LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000419
420LOCAL_UNINSTALLABLE_MODULE := true
421
422include $(BUILD_DROIDDOC)
423
David Brazdil68e1c1d2018-03-08 14:32:27 +0000424$(full_target): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_PLATFORM_TEST_API_FILE) \
425 $(INTERNAL_PLATFORM_TEST_REMOVED_API_FILE) \
426 $(INTERNAL_PLATFORM_TEST_EXACT_API_FILE)
Michael Wrightb2b2c0e2015-11-06 15:21:13 +0000427$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_TEST_API_FILE))
428
David Brazdil68e1c1d2018-03-08 14:32:27 +0000429# ==== the complete hidden api list ===================================
430include $(CLEAR_VARS)
431
432LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
433LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
434LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
435LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
436LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
437LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
438LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
439LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
440LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
441
442LOCAL_MODULE := hidden-api-list
443
444LOCAL_DROIDDOC_OPTIONS:=\
445 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
446 -referenceonly \
447 -showUnannotated \
448 -showAnnotation android.annotation.SystemApi \
449 -showAnnotation android.annotation.TestApi \
David Brazdil94c2ab62018-05-30 13:59:11 +0100450 -dexApi $(INTERNAL_PLATFORM_DEX_API_FILE) \
David Brazdil68e1c1d2018-03-08 14:32:27 +0000451 -privateDexApi $(INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE) \
David Brazdil0f0abb22018-04-26 16:10:35 +0100452 -removedDexApi $(INTERNAL_PLATFORM_REMOVED_DEX_API_FILE) \
David Brazdil68e1c1d2018-03-08 14:32:27 +0000453 -nodocs
454
455LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
456
457LOCAL_UNINSTALLABLE_MODULE := true
458
459include $(BUILD_DROIDDOC)
460
David Brazdil94c2ab62018-05-30 13:59:11 +0100461$(full_target): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_PLATFORM_DEX_API_FILE) \
462 $(INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE) \
David Brazdil0f0abb22018-04-26 16:10:35 +0100463 $(INTERNAL_PLATFORM_REMOVED_DEX_API_FILE)
David Brazdil68e1c1d2018-03-08 14:32:27 +0000464
Bart Searsa8cc0582015-05-07 03:23:20 +0000465# ==== check javadoc comments but don't generate docs ========
466include $(CLEAR_VARS)
467
468LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800469LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800470LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000471LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
472LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
473LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
474LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
475LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
476LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
477
478LOCAL_MODULE := doc-comment-check
479
480LOCAL_DROIDDOC_OPTIONS:=\
481 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700482 -referenceonly \
Bart Searsa8cc0582015-05-07 03:23:20 +0000483 -parsecomments
484
Scott Main15b85172017-02-21 14:30:58 -0800485LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000486
487LOCAL_UNINSTALLABLE_MODULE := true
488
489include $(BUILD_DROIDDOC)
490
Bart Searsa8cc0582015-05-07 03:23:20 +0000491# Run this for checkbuild
492checkbuild: doc-comment-check-docs
493# Check comment when you are updating the API
494update-api: doc-comment-check-docs
495
496# ==== static html in the sdk ==================================
497include $(CLEAR_VARS)
498
499LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800500LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800501LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000502LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
503LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
504LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
505LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
506LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
507LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
508
509LOCAL_MODULE := offline-sdk
510
511LOCAL_DROIDDOC_OPTIONS:=\
512 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
513 -offlinemode \
514 -title "Android SDK" \
515 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
smain@google.com00de8c52016-03-07 18:38:08 -0800516 -sdkvalues $(OUT_DOCS) \
smain@google.com8562ab52016-06-14 17:11:57 -0700517 -hdf android.whichdoc offline
518
Scott Main15b85172017-02-21 14:30:58 -0800519LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
smain@google.com8562ab52016-06-14 17:11:57 -0700520
521include $(BUILD_DROIDDOC)
522
523static_doc_index_redirect := $(out_dir)/index.html
524$(static_doc_index_redirect): \
525 $(LOCAL_PATH)/docs/docs-preview-index.html | $(ACP)
526 $(hide) mkdir -p $(dir $@)
527 $(hide) $(ACP) $< $@
528
529$(full_target): $(static_doc_index_redirect)
smain@google.com8562ab52016-06-14 17:11:57 -0700530
531
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700532# ==== Public API static reference docs ==================================
smain@google.com8562ab52016-06-14 17:11:57 -0700533include $(CLEAR_VARS)
534
535LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800536LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800537LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
smain@google.com8562ab52016-06-14 17:11:57 -0700538LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
539LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
540LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
541LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
542LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
543LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
544
545LOCAL_MODULE := offline-sdk-referenceonly
546
547LOCAL_DROIDDOC_OPTIONS:=\
548 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
549 -offlinemode \
550 -title "Android SDK" \
551 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
552 -sdkvalues $(OUT_DOCS) \
smain@google.com00de8c52016-03-07 18:38:08 -0800553 -hdf android.whichdoc offline \
Scott Mainf8cdfc82017-03-21 13:43:31 -0700554 -referenceonly
smain@google.com00de8c52016-03-07 18:38:08 -0800555
Scott Main15b85172017-02-21 14:30:58 -0800556LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
smain@google.com00de8c52016-03-07 18:38:08 -0800557
558include $(BUILD_DROIDDOC)
559
560static_doc_index_redirect := $(out_dir)/index.html
smain@google.com151833a2016-08-31 08:42:09 -0700561$(static_doc_index_redirect): $(LOCAL_PATH)/docs/docs-documentation-redirect.html
Dan Willemsen98ff0b72016-03-23 00:42:44 -0700562 $(copy-file-to-target)
smain@google.com00de8c52016-03-07 18:38:08 -0800563
smain@google.com2f2365d2016-09-21 14:05:50 -0700564static_doc_properties := $(out_dir)/source.properties
565$(static_doc_properties): \
566 $(LOCAL_PATH)/docs/source.properties | $(ACP)
567 $(hide) mkdir -p $(dir $@)
568 $(hide) $(ACP) $< $@
569
smain@google.com00de8c52016-03-07 18:38:08 -0800570$(full_target): $(static_doc_index_redirect)
smain@google.com2f2365d2016-09-21 14:05:50 -0700571$(full_target): $(static_doc_properties)
smain@google.com00de8c52016-03-07 18:38:08 -0800572
smain@google.com7aca8be2016-03-10 14:13:30 -0800573
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700574# ==== System API static reference docs ==================================
575include $(CLEAR_VARS)
576
577LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800578LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800579LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700580LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
581LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
582LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
583LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
584LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
585LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
586
587LOCAL_MODULE := offline-system-sdk-referenceonly
588
589LOCAL_DROIDDOC_OPTIONS:=\
590 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
591 -hide 101 -hide 104 -hide 108 \
592 -showAnnotation android.annotation.SystemApi \
593 -offlinemode \
594 -title "Android System SDK" \
595 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
596 -sdkvalues $(OUT_DOCS) \
597 -hdf android.whichdoc offline \
598 -referenceonly
599
600LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
601
602include $(BUILD_DROIDDOC)
603
604static_doc_index_redirect := $(out_dir)/index.html
605$(static_doc_index_redirect): $(LOCAL_PATH)/docs/docs-documentation-redirect.html
606 $(copy-file-to-target)
607
608static_doc_properties := $(out_dir)/source.properties
609$(static_doc_properties): \
610 $(LOCAL_PATH)/docs/source.properties | $(ACP)
611 $(hide) mkdir -p $(dir $@)
612 $(hide) $(ACP) $< $@
613
614$(full_target): $(static_doc_index_redirect)
615$(full_target): $(static_doc_properties)
616$(full_target): $(framework_built)
617
618
Bart Searsa8cc0582015-05-07 03:23:20 +0000619# ==== docs for the web (on the androiddevdocs app engine server) =======================
620include $(CLEAR_VARS)
621
622LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800623LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800624LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000625LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
626LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
627LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
628LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
629LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
630LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
631LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
632LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
633
634LOCAL_MODULE := online-sdk
635
636LOCAL_DROIDDOC_OPTIONS:= \
637 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
638 -toroot / \
639 -hdf android.whichdoc online \
640 $(sample_groups) \
641 -hdf android.hasSamples true \
642 -samplesdir $(samples_dir)
643
Scott Main15b85172017-02-21 14:30:58 -0800644LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000645
646include $(BUILD_DROIDDOC)
647
648# ==== docs for the web (on the androiddevdocs app engine server) =======================
Bart Searsa8cc0582015-05-07 03:23:20 +0000649include $(CLEAR_VARS)
650
651LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800652LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800653LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000654LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
655LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
656LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
657LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
658LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
659LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
660LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
661LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
662
663LOCAL_MODULE := online-system-api-sdk
664
665LOCAL_DROIDDOC_OPTIONS:= \
666 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700667 -referenceonly \
Bart Searsa8cc0582015-05-07 03:23:20 +0000668 -showAnnotation android.annotation.SystemApi \
669 -title "Android SDK - Including system APIs." \
670 -toroot / \
Gina Dimino98ad8882016-05-31 17:25:48 -0700671 -hide 101 \
672 -hide 104 \
673 -hide 108 \
Bart Searsa8cc0582015-05-07 03:23:20 +0000674 -hdf android.whichdoc online \
675 $(sample_groups) \
676 -hdf android.hasSamples true \
677 -samplesdir $(samples_dir)
678
Scott Main15b85172017-02-21 14:30:58 -0800679LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Jeff Sharkey05461c02017-05-09 19:01:09 -0600680
Bart Searsa8cc0582015-05-07 03:23:20 +0000681LOCAL_UNINSTALLABLE_MODULE := true
682
683include $(BUILD_DROIDDOC)
Bart Searsa8cc0582015-05-07 03:23:20 +0000684
685# ==== docs for the web (on the devsite app engine server) =======================
686include $(CLEAR_VARS)
687LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800688LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800689LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000690LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
691LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
692LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
693LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
694LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
695LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
696LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
697# specify a second html input dir and an output path relative to OUT_DIR)
Dirk Dougherty3852c1f2016-04-10 02:05:09 -0700698LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
Bart Searsa8cc0582015-05-07 03:23:20 +0000699
700LOCAL_MODULE := ds
701
702LOCAL_DROIDDOC_OPTIONS:= \
703 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Bart Searsa8cc0582015-05-07 03:23:20 +0000704 -toroot / \
705 -hdf android.whichdoc online \
Dirk Doughertyb042ab12016-06-14 16:26:28 -0700706 -devsite \
Scott Main4f9b48c2017-12-19 13:43:45 -0800707 -yamlV2 \
Dirk Dougherty3852c1f2016-04-10 02:05:09 -0700708 $(sample_groups) \
Dirk Dougherty3852c1f2016-04-10 02:05:09 -0700709 -hdf android.hasSamples true \
710 -samplesdir $(samples_dir)
Bart Searsa8cc0582015-05-07 03:23:20 +0000711
Scott Main15b85172017-02-21 14:30:58 -0800712LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000713
714include $(BUILD_DROIDDOC)
715
Dirk Doughertyb042ab12016-06-14 16:26:28 -0700716# ==== docs for the web (on the devsite app engine server) =======================
717include $(CLEAR_VARS)
718LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800719LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800720LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Dirk Doughertyb042ab12016-06-14 16:26:28 -0700721LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
722LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
723LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
724LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
725LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
726LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
727LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
728# specify a second html input dir and an output path relative to OUT_DIR)
729LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
730
731LOCAL_MODULE := ds-static
732
733LOCAL_DROIDDOC_OPTIONS:= \
734 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
735 -hdf android.whichdoc online \
736 -staticonly \
737 -toroot / \
738 -devsite \
739 -ignoreJdLinks
740
Scott Main15b85172017-02-21 14:30:58 -0800741LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Dirk Doughertyb042ab12016-06-14 16:26:28 -0700742
743include $(BUILD_DROIDDOC)
744
Dirk Dougherty7d47b552016-09-13 16:44:25 -0700745# ==== generates full navtree for resolving @links in ds postprocessing ====
746include $(CLEAR_VARS)
747
748LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800749LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800750LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Dirk Dougherty7d47b552016-09-13 16:44:25 -0700751LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
752LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
753LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
754LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
755LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
756LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
757
758LOCAL_MODULE := ds-ref-navtree
759
760LOCAL_DROIDDOC_OPTIONS:= \
761 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
762 -hdf android.whichdoc online \
763 -toroot / \
764 -atLinksNavtree \
765 -navtreeonly
766
Scott Main15b85172017-02-21 14:30:58 -0800767LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Dirk Dougherty7d47b552016-09-13 16:44:25 -0700768
769include $(BUILD_DROIDDOC)
770
Dirk Dougherty31ae1c512015-11-07 13:18:02 -0800771# ==== site updates for docs (on the androiddevdocs app engine server) =======================
Bart Searsa8cc0582015-05-07 03:23:20 +0000772include $(CLEAR_VARS)
Dirk Dougherty31ae1c512015-11-07 13:18:02 -0800773
Bart Searsa8cc0582015-05-07 03:23:20 +0000774LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800775LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800776LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000777LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
778LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
779LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
780LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
Dirk Dougherty31ae1c512015-11-07 13:18:02 -0800781LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
Bart Searsa8cc0582015-05-07 03:23:20 +0000782LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
783LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Dirk Dougherty31ae1c512015-11-07 13:18:02 -0800784LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
Bart Searsa8cc0582015-05-07 03:23:20 +0000785
Dirk Dougherty31ae1c512015-11-07 13:18:02 -0800786LOCAL_MODULE := online-sdk-dev
Bart Searsa8cc0582015-05-07 03:23:20 +0000787
788LOCAL_DROIDDOC_OPTIONS:= \
789 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
790 -toroot / \
791 -hdf android.whichdoc online \
792 $(sample_groups) \
793 -hdf android.hasSamples true \
794 -samplesdir $(samples_dir)
795
Scott Main15b85172017-02-21 14:30:58 -0800796LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000797
798include $(BUILD_DROIDDOC)
799
Bart Searsa8cc0582015-05-07 03:23:20 +0000800# ==== docs that have all of the stuff that's @hidden =======================
801include $(CLEAR_VARS)
802
803LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800804LOCAL_GENERATED_SOURCES:=$(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800805LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Bart Searsa8cc0582015-05-07 03:23:20 +0000806LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
807LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
808LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
809LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
810LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
811LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
812
813LOCAL_MODULE := hidden
814LOCAL_DROIDDOC_OPTIONS:=\
815 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
smain@google.com534bfe12016-09-01 19:52:17 -0700816 -referenceonly \
Bart Searsa8cc0582015-05-07 03:23:20 +0000817 -title "Android SDK - Including hidden APIs."
818# -hidden
819
Scott Main15b85172017-02-21 14:30:58 -0800820LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=external/doclava/res/assets/templates-sdk
Bart Searsa8cc0582015-05-07 03:23:20 +0000821
822include $(BUILD_DROIDDOC)
823
Joe Onorato1754d742016-11-21 17:51:35 -0800824# ==== java proto host library ==============================
825include $(CLEAR_VARS)
826LOCAL_MODULE := platformprotos
827LOCAL_PROTOC_OPTIMIZE_TYPE := full
828LOCAL_PROTOC_FLAGS := \
829 -Iexternal/protobuf/src
830LOCAL_SOURCE_FILES_ALL_GENERATED := true
831LOCAL_SRC_FILES := \
Mike Mada3a2952017-11-13 12:06:45 -0800832 cmds/am/proto/instrumentation_data.proto \
Primiano Tuccie4d44912018-01-10 12:14:50 +0000833 cmds/statsd/src/perfetto/perfetto_config.proto \
Joe Onorato1754d742016-11-21 17:51:35 -0800834 $(call all-proto-files-under, core/proto) \
Chenjie Yu15176cd2017-11-22 12:36:41 -0800835 $(call all-proto-files-under, libs/incident/proto) \
836 $(call all-proto-files-under, cmds/statsd/src)
Andreas Gampe3e429f32018-02-15 15:12:38 -0800837# b/72714520
838LOCAL_ERROR_PRONE_FLAGS := -Xep:MissingOverride:OFF
Joe Onorato1754d742016-11-21 17:51:35 -0800839include $(BUILD_HOST_JAVA_LIBRARY)
840
Steven Timotius7ece0422017-08-03 13:37:26 -0700841# ==== java proto device library (for test only) ==============================
842include $(CLEAR_VARS)
843LOCAL_MODULE := platformprotosnano
Joe Onorato62c220b2017-11-18 20:32:56 -0800844LOCAL_MODULE_TAGS := tests
Steven Timotius7ece0422017-08-03 13:37:26 -0700845LOCAL_PROTOC_OPTIMIZE_TYPE := nano
846LOCAL_PROTOC_FLAGS := \
847 -Iexternal/protobuf/src
848LOCAL_PROTO_JAVA_OUTPUT_PARAMS := \
849 store_unknown_fields = true
Jiyong Parkf0048392018-02-12 21:57:59 +0900850LOCAL_SDK_VERSION := current
Steven Timotius7ece0422017-08-03 13:37:26 -0700851LOCAL_SRC_FILES := \
Yi Jin437aa6e2018-01-10 11:34:26 -0800852 $(call all-proto-files-under, core/proto) \
853 $(call all-proto-files-under, libs/incident/proto/android/os)
Steven Timotius7ece0422017-08-03 13:37:26 -0700854include $(BUILD_STATIC_JAVA_LIBRARY)
855
Bart Searsa8cc0582015-05-07 03:23:20 +0000856
Joe Onorato62c220b2017-11-18 20:32:56 -0800857# ==== java proto device library (for test only) ==============================
858include $(CLEAR_VARS)
859LOCAL_MODULE := platformprotoslite
860LOCAL_MODULE_TAGS := tests
861LOCAL_PROTOC_OPTIMIZE_TYPE := lite
862LOCAL_PROTOC_FLAGS := \
863 -Iexternal/protobuf/src
864LOCAL_SRC_FILES := \
Yi Jin437aa6e2018-01-10 11:34:26 -0800865 $(call all-proto-files-under, core/proto) \
866 $(call all-proto-files-under, libs/incident/proto/android/os)
Andreas Gampe93b64c92018-01-30 18:50:34 -0800867# Protos have lots of MissingOverride and similar.
868LOCAL_ERROR_PRONE_FLAGS := -XepDisableAllChecks
Joe Onorato62c220b2017-11-18 20:32:56 -0800869include $(BUILD_STATIC_JAVA_LIBRARY)
870
David Brazdil0649c8d2018-01-22 22:23:13 +0000871# ==== hiddenapi lists =======================================
David Brazdil721bc8e2018-05-08 15:04:20 +0100872include $(CLEAR_VARS)
David Brazdil0649c8d2018-01-22 22:23:13 +0000873
David Brazdil721bc8e2018-05-08 15:04:20 +0100874# File names of final API lists
875LOCAL_LIGHT_GREYLIST := $(INTERNAL_PLATFORM_HIDDENAPI_LIGHT_GREYLIST)
876LOCAL_DARK_GREYLIST := $(INTERNAL_PLATFORM_HIDDENAPI_DARK_GREYLIST)
877LOCAL_BLACKLIST := $(INTERNAL_PLATFORM_HIDDENAPI_BLACKLIST)
878
879# File names of source files we will use to generate the final API lists.
880LOCAL_SRC_GREYLIST := frameworks/base/config/hiddenapi-light-greylist.txt
881LOCAL_SRC_VENDOR_LIST := frameworks/base/config/hiddenapi-vendor-list.txt
David Brazdil4b34f792018-05-08 16:49:02 +0100882LOCAL_SRC_FORCE_BLACKLIST := frameworks/base/config/hiddenapi-force-blacklist.txt
David Brazdil94c2ab62018-05-30 13:59:11 +0100883LOCAL_SRC_PUBLIC_API := $(INTERNAL_PLATFORM_DEX_API_FILE)
David Brazdil721bc8e2018-05-08 15:04:20 +0100884LOCAL_SRC_PRIVATE_API := $(INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE)
885LOCAL_SRC_REMOVED_API := $(INTERNAL_PLATFORM_REMOVED_DEX_API_FILE)
886
887LOCAL_SRC_ALL := \
888 $(LOCAL_SRC_GREYLIST) \
889 $(LOCAL_SRC_VENDOR_LIST) \
David Brazdil4b34f792018-05-08 16:49:02 +0100890 $(LOCAL_SRC_FORCE_BLACKLIST) \
David Brazdil94c2ab62018-05-30 13:59:11 +0100891 $(LOCAL_SRC_PUBLIC_API) \
David Brazdil721bc8e2018-05-08 15:04:20 +0100892 $(LOCAL_SRC_PRIVATE_API) \
893 $(LOCAL_SRC_REMOVED_API)
894
895define assert-has-no-overlap
896if [ ! -z "`comm -12 <(sort $(1)) <(sort $(2))`" ]; then \
897 echo "$(1) and $(2) should not overlap" 1>&2; \
898 comm -12 <(sort $(1)) <(sort $(2)) 1>&2; \
899 exit 1; \
900fi
901endef
902
903define assert-is-subset
904if [ ! -z "`comm -23 <(sort $(1)) <(sort $(2))`" ]; then \
905 echo "$(1) must be a subset of $(2)" 1>&2; \
906 comm -23 <(sort $(1)) <(sort $(2)) 1>&2; \
907 exit 1; \
908fi
909endef
910
911define assert-has-no-duplicates
912if [ ! -z "`sort $(1) | uniq -D`" ]; then \
913 echo "$(1) has duplicate entries" 1>&2; \
914 sort $(1) | uniq -D 1>&2; \
915 exit 1; \
916fi
917endef
918
919# The following rules build API lists in the build folder.
920# By not using files from the source tree, ART buildbots can mock these lists
921# or have alternative rules for building them. Other rules in the build system
922# should depend on the files in the build folder.
David Brazdilf16ac002018-01-26 11:13:35 +0000923
David Brazdil05855332018-04-25 11:15:07 +0100924# Merge light greylist from multiple files:
David Brazdil721bc8e2018-05-08 15:04:20 +0100925# (1) manual greylist LOCAL_SRC_GREYLIST
926# (2) list of usages from vendor apps LOCAL_SRC_VENDOR_LIST
927# (3) list of removed APIs in LOCAL_SRC_REMOVED_API
David Brazdil05855332018-04-25 11:15:07 +0100928# @removed does not imply private in Doclava. We must take the subset also
David Brazdil721bc8e2018-05-08 15:04:20 +0100929# in LOCAL_SRC_PRIVATE_API.
David Brazdil05855332018-04-25 11:15:07 +0100930# (4) list of serialization APIs
931# Automatically adds all methods which match the signatures in
932# REGEX_SERIALIZATION. These are greylisted in order to allow applications
933# to write their own serializers.
David Brazdil721bc8e2018-05-08 15:04:20 +0100934$(LOCAL_LIGHT_GREYLIST): REGEX_SERIALIZATION := \
David Brazdil357170b12018-03-26 16:02:23 +0100935 "readObject\(Ljava/io/ObjectInputStream;\)V" \
936 "readObjectNoData\(\)V" \
937 "readResolve\(\)Ljava/lang/Object;" \
938 "serialVersionUID:J" \
939 "serialPersistentFields:\[Ljava/io/ObjectStreamField;" \
940 "writeObject\(Ljava/io/ObjectOutputStream;\)V" \
941 "writeReplace\(\)Ljava/lang/Object;"
David Brazdil721bc8e2018-05-08 15:04:20 +0100942$(LOCAL_LIGHT_GREYLIST): $(LOCAL_SRC_ALL)
943 sort $(LOCAL_SRC_GREYLIST) $(LOCAL_SRC_VENDOR_LIST) \
944 <(grep -E "\->("$(subst $(space),"|",$(REGEX_SERIALIZATION))")$$" \
945 $(LOCAL_SRC_PRIVATE_API)) \
946 <(comm -12 <(sort $(LOCAL_SRC_REMOVED_API)) <(sort $(LOCAL_SRC_PRIVATE_API))) \
947 > $@
948 $(call assert-has-no-duplicates,$@)
949 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
David Brazdil4b34f792018-05-08 16:49:02 +0100950 $(call assert-has-no-overlap,$@,$(LOCAL_SRC_FORCE_BLACKLIST))
David Brazdilf16ac002018-01-26 11:13:35 +0000951
David Brazdil4c3c0312018-05-10 15:50:02 +0100952# Generate dark greylist as remaining classes and class members in the same
953# package as classes listed in the light greylist.
David Brazdil185f00e2018-05-08 15:28:31 +0100954# The algorithm is as follows:
955# (1) extract the class descriptor from each entry in LOCAL_LIGHT_GREYLIST
David Brazdil4c3c0312018-05-10 15:50:02 +0100956# (2) strip everything after the last forward-slash,
957# e.g. 'Lpackage/subpackage/class$inner;' turns into 'Lpackage/subpackage/'
958# (3) insert all entries from LOCAL_SRC_PRIVATE_API which begin with the package
959# name but do not contain another forward-slash in the class name, e.g.
960# matching '^Lpackage/subpackage/[^/;]*;'
David Brazdil185f00e2018-05-08 15:28:31 +0100961# (4) subtract entries shared with LOCAL_LIGHT_GREYLIST
David Brazdil721bc8e2018-05-08 15:04:20 +0100962$(LOCAL_DARK_GREYLIST): $(LOCAL_SRC_ALL) $(LOCAL_LIGHT_GREYLIST)
David Brazdil4b34f792018-05-08 16:49:02 +0100963 comm -13 <(sort $(LOCAL_LIGHT_GREYLIST) $(LOCAL_SRC_FORCE_BLACKLIST)) \
David Brazdil94c2ab62018-05-30 13:59:11 +0100964 <(cat $(LOCAL_SRC_PUBLIC_API) $(LOCAL_LIGHT_GREYLIST) | \
965 sed 's/\->.*//' | sed 's/\(.*\/\).*/\1/' | sort | uniq | \
David Brazdil4c3c0312018-05-10 15:50:02 +0100966 while read PKG_NAME; do \
967 grep -E "^$${PKG_NAME}[^/;]*;" $(LOCAL_SRC_PRIVATE_API); \
David Brazdil185f00e2018-05-08 15:28:31 +0100968 done | sort | uniq) \
969 > $@
David Brazdil721bc8e2018-05-08 15:04:20 +0100970 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
971 $(call assert-has-no-duplicates,$@)
972 $(call assert-has-no-overlap,$@,$(LOCAL_LIGHT_GREYLIST))
David Brazdil4b34f792018-05-08 16:49:02 +0100973 $(call assert-has-no-overlap,$@,$(LOCAL_SRC_FORCE_BLACKLIST))
David Brazdil36bbf122018-03-28 11:28:39 +0100974
David Brazdil721bc8e2018-05-08 15:04:20 +0100975# Generate blacklist as private API minus (light greylist plus dark greylist).
976$(LOCAL_BLACKLIST): $(LOCAL_SRC_ALL) $(LOCAL_LIGHT_GREYLIST) $(LOCAL_DARK_GREYLIST)
977 comm -13 <(sort $(LOCAL_LIGHT_GREYLIST) $(LOCAL_DARK_GREYLIST)) \
978 <(sort $(LOCAL_SRC_PRIVATE_API)) \
979 > $@
980 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
981 $(call assert-has-no-duplicates,$@)
982 $(call assert-has-no-overlap,$@,$(LOCAL_LIGHT_GREYLIST))
983 $(call assert-has-no-overlap,$@,$(LOCAL_DARK_GREYLIST))
David Brazdil4b34f792018-05-08 16:49:02 +0100984 $(call assert-is-subset,$(LOCAL_SRC_FORCE_BLACKLIST),$@)
David Brazdil0649c8d2018-01-22 22:23:13 +0000985
Bart Searsa8cc0582015-05-07 03:23:20 +0000986# Include subdirectory makefiles
987# ============================================================
988
989# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
990# team really wants is to build the stuff defined by this makefile.
991ifeq (,$(ONE_SHOT_MAKEFILE))
992include $(call first-makefiles-under,$(LOCAL_PATH))
993endif
994
Holly Jiuyu Sunbbc85802017-12-21 18:44:59 -0800995endif # ANDROID_BUILD_EMBEDDED