blob: 2883f3441882d88ed47ebe83f1d76e9834513108 [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 \
Anton Hansson6a9e7262018-04-19 16:23:53 +0100171 -hidePackage com.android.server
172
173# Convert an sdk level to a "since" argument.
174since-arg = -since $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/$(1)/public/api/android.*) $(1)
175
176finalized_sdks := $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/public/api/android.xml,%,\
177 $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/public/api/android.xml))
178finalized_sdks += $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/public/api/android.txt,%,\
179 $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/public/api/android.txt))
180finalized_sdks := $(call numerically_sort,$(finalized_sdks))
181
182framework_docs_LOCAL_DROIDDOC_OPTIONS += $(foreach sdk,$(finalized_sdks),$(call since-arg,$(sdk)))
183ifneq ($(PLATFORM_VERSION_CODENAME),REL)
184 framework_docs_LOCAL_DROIDDOC_OPTIONS += \
185 -since ./frameworks/base/api/current.txt $(PLATFORM_VERSION_CODENAME)
186endif
187framework_docs_LOCAL_DROIDDOC_OPTIONS += \
Jeff Sharkeyc204c222017-11-27 15:02:10 -0700188 -werror -lerror -hide 111 -hide 113 -hide 125 -hide 126 -hide 127 -hide 128 \
Anton Hansson6a9e7262018-04-19 16:23:53 +0100189 -overview $(LOCAL_PATH)/core/java/overview.html
Bart Searsa8cc0582015-05-07 03:23:20 +0000190
191framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR:= \
192 $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
193
194framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= \
Alan Viverette9ca513e2017-04-05 10:21:58 -0400195 $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
Bart Searsa8cc0582015-05-07 03:23:20 +0000196
197framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
Narayan Kamathc21739a2015-07-14 13:39:23 +0100198 frameworks/base/docs/knowntags.txt \
Colin Cross72d359f2017-10-27 10:46:53 -0700199 $(libcore_to_document_generated)
Bart Searsa8cc0582015-05-07 03:23:20 +0000200
201samples_dir := development/samples/browseable
202
203# Whitelist of valid groups, used for default TOC grouping. Each sample must
204# belong to one (and only one) group. Assign samples to groups by setting
205# a sample.group var to one of these groups in the sample's _index.jd.
206sample_groups := -samplegroup Admin \
207 -samplegroup Background \
208 -samplegroup Connectivity \
209 -samplegroup Content \
210 -samplegroup Input \
211 -samplegroup Media \
212 -samplegroup Notification \
213 -samplegroup RenderScript \
214 -samplegroup Security \
215 -samplegroup Sensors \
Trevor Johns4cbe3592015-05-27 14:50:51 -0700216 -samplegroup System \
Bart Searsa8cc0582015-05-07 03:23:20 +0000217 -samplegroup Testing \
218 -samplegroup UI \
219 -samplegroup Views \
220 -samplegroup Wearable
221
222## SDK version identifiers used in the published docs
223 # major[.minor] version for current SDK. (full releases only)
[email protected]dde8deb2016-08-29 18:36:50 -0700224framework_docs_SDK_VERSION:=7.0
Bart Searsa8cc0582015-05-07 03:23:20 +0000225 # release version (ie "Release x") (full releases only)
226framework_docs_SDK_REL_ID:=1
227
228framework_docs_LOCAL_DROIDDOC_OPTIONS += \
Billy Lamberta75dbc8f2017-03-03 13:09:15 -0800229 -hdf dac true \
Scott Mainf8cdfc82017-03-21 13:43:31 -0700230 -hdf sdk.codename O \
231 -hdf sdk.preview.version 1 \
Bart Searsa8cc0582015-05-07 03:23:20 +0000232 -hdf sdk.version $(framework_docs_SDK_VERSION) \
233 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
Scott Mainf8cdfc82017-03-21 13:43:31 -0700234 -hdf sdk.preview 0 \
235 -resourcesdir $(LOCAL_PATH)/docs/html/reference/images/ \
236 -resourcesoutdir reference/android/images/
Bart Searsa8cc0582015-05-07 03:23:20 +0000237
Alan Viverette9ca513e2017-04-05 10:21:58 -0400238# Federate Support Library references against local API file.
239framework_docs_LOCAL_DROIDDOC_OPTIONS += \
240 -federate SupportLib https://developer.android.com \
241 -federationapi SupportLib prebuilts/sdk/current/support-api.txt
242
Alan Viverette67b51d42018-03-28 17:10:20 -0400243# Federate AndroidX references against local API file.
244framework_docs_LOCAL_DROIDDOC_OPTIONS += \
245 -federate AndroidX https://developer.android.com \
246 -federationapi AndroidX prebuilts/sdk/current/androidx-api.txt
247
Anton Hanssoncfa700d2018-04-23 17:34:18 +0100248# Get the highest numbered api txt for the given api level.
249# $(1): the api level (e.g. public, system)
250define highest_sdk_txt
251$(HISTORICAL_SDK_VERSIONS_ROOT)/$(lastword $(call numerically_sort, \
252 $(patsubst \
253 $(HISTORICAL_SDK_VERSIONS_ROOT)/%,\
254 %,\
255 $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/$(1)/api/android.txt)\
256 ) \
257))
258endef
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
Anton Hanssoncfa700d2018-04-23 17:34:18 +0100275# Basename, because apidiff adds .txt internally.
276LOCAL_APIDIFF_OLDAPI := $(basename $(call highest_sdk_txt,public))
Alan Viverette6b7354c2017-07-13 17:10:14 -0400277LOCAL_APIDIFF_NEWAPI := $(LOCAL_PATH)/../../$(basename $(INTERNAL_PLATFORM_API_FILE))
278
279include $(BUILD_APIDIFF)
280
Jeff Sharkeyc8dc2542017-12-08 14:52:37 -0700281# Hack to get diffs included in docs output
282out_zip := $(OUT_DOCS)/$(LOCAL_MODULE)-docs.zip
283$(out_zip): $(full_target)
284
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700285# ==== System API diff ===========================
286include $(CLEAR_VARS)
287
288LOCAL_SRC_FILES := $(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Colin Crossbd200ce2017-12-04 13:45:19 -0800289LOCAL_GENERATED_SOURCES := $(framework_docs_LOCAL_GENERATED_SOURCES)
Colin Crosscf3a0b52017-11-16 00:15:28 -0800290LOCAL_SRCJARS:=$(framework_docs_LOCAL_SRCJARS)
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700291LOCAL_JAVA_LIBRARIES := $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
292LOCAL_MODULE_CLASS := $(framework_docs_LOCAL_MODULE_CLASS)
293LOCAL_ADDITIONAL_JAVA_DIR := $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
294LOCAL_ADDITIONAL_DEPENDENCIES := \
295 $(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) \
296 $(INTERNAL_PLATFORM_SYSTEM_API_FILE)
297
298LOCAL_MODULE := offline-system-sdk-referenceonly
299
Anton Hanssoncfa700d2018-04-23 17:34:18 +0100300# Basename, because apidiff adds .txt internally.
301LOCAL_APIDIFF_OLDAPI := $(basename $(call highest_sdk_txt,system))
Jeff Sharkeyd2bf31c2017-11-29 13:14:27 -0700302LOCAL_APIDIFF_NEWAPI := $(LOCAL_PATH)/../../$(basename $(INTERNAL_PLATFORM_SYSTEM_API_FILE))
303
304include $(BUILD_APIDIFF)
305
Jeff Sharkeyc8dc2542017-12-08 14:52:37 -0700306# Hack to get diffs included in docs output
307out_zip := $(OUT_DOCS)/$(LOCAL_MODULE)-docs.zip
308$(out_zip): $(full_target)
309
Bart Searsa8cc0582015-05-07 03:23:20 +0000310$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
Bart Searsa8cc0582015-05-07 03:23:20 +0000311$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_SYSTEM_API_FILE))
Michael Wrightb2b2c0e72015-11-06 15:21:13 +0000312$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_TEST_API_FILE))
313
Nan Zhange9a76f72018-07-11 15:19:22 -0700314# sdk.atree needs to copy the whole dir: $(OUT_DOCS)/offline-sdk to the final zip.
315# So keep offline-sdk-timestamp target here, and unzip offline-sdk-docs.zip to
316# $(OUT_DOCS)/offline-sdk.
317$(OUT_DOCS)/offline-sdk-timestamp: $(OUT_DOCS)/offline-sdk-docs-docs.zip
318 $(hide) rm -rf $(OUT_DOCS)/offline-sdk
319 $(hide) mkdir -p $(OUT_DOCS)/offline-sdk
320 ( unzip -qo $< -d $(OUT_DOCS)/offline-sdk && touch -f $@ ) || exit 1
Bart Searsa8cc0582015-05-07 03:23:20 +0000321
Steven Timotius7ece0422017-08-03 13:37:26 -0700322# ==== java proto device library (for test only) ==============================
323include $(CLEAR_VARS)
324LOCAL_MODULE := platformprotosnano
Joe Onorato62c220b2017-11-18 20:32:56 -0800325LOCAL_MODULE_TAGS := tests
Steven Timotius7ece0422017-08-03 13:37:26 -0700326LOCAL_PROTOC_OPTIMIZE_TYPE := nano
327LOCAL_PROTOC_FLAGS := \
328 -Iexternal/protobuf/src
329LOCAL_PROTO_JAVA_OUTPUT_PARAMS := \
330 store_unknown_fields = true
Jiyong Parkf0048392018-02-12 21:57:59 +0900331LOCAL_SDK_VERSION := current
Steven Timotius7ece0422017-08-03 13:37:26 -0700332LOCAL_SRC_FILES := \
Yi Jin437aa6e2018-01-10 11:34:26 -0800333 $(call all-proto-files-under, core/proto) \
334 $(call all-proto-files-under, libs/incident/proto/android/os)
Steven Timotius7ece0422017-08-03 13:37:26 -0700335include $(BUILD_STATIC_JAVA_LIBRARY)
336
Bart Searsa8cc0582015-05-07 03:23:20 +0000337
Joe Onorato62c220b2017-11-18 20:32:56 -0800338# ==== java proto device library (for test only) ==============================
339include $(CLEAR_VARS)
340LOCAL_MODULE := platformprotoslite
341LOCAL_MODULE_TAGS := tests
342LOCAL_PROTOC_OPTIMIZE_TYPE := lite
343LOCAL_PROTOC_FLAGS := \
344 -Iexternal/protobuf/src
345LOCAL_SRC_FILES := \
Yi Jin437aa6e2018-01-10 11:34:26 -0800346 $(call all-proto-files-under, core/proto) \
347 $(call all-proto-files-under, libs/incident/proto/android/os)
Andreas Gampe93b64c92018-01-30 18:50:34 -0800348# Protos have lots of MissingOverride and similar.
349LOCAL_ERROR_PRONE_FLAGS := -XepDisableAllChecks
Joe Onorato62c220b2017-11-18 20:32:56 -0800350include $(BUILD_STATIC_JAVA_LIBRARY)
351
David Brazdil0649c8d2018-01-22 22:23:13 +0000352# ==== hiddenapi lists =======================================
David Brazdil721bc8e2018-05-08 15:04:20 +0100353include $(CLEAR_VARS)
David Brazdil0649c8d2018-01-22 22:23:13 +0000354
David Brazdil721bc8e2018-05-08 15:04:20 +0100355# File names of final API lists
356LOCAL_LIGHT_GREYLIST := $(INTERNAL_PLATFORM_HIDDENAPI_LIGHT_GREYLIST)
357LOCAL_DARK_GREYLIST := $(INTERNAL_PLATFORM_HIDDENAPI_DARK_GREYLIST)
358LOCAL_BLACKLIST := $(INTERNAL_PLATFORM_HIDDENAPI_BLACKLIST)
359
360# File names of source files we will use to generate the final API lists.
361LOCAL_SRC_GREYLIST := frameworks/base/config/hiddenapi-light-greylist.txt
362LOCAL_SRC_VENDOR_LIST := frameworks/base/config/hiddenapi-vendor-list.txt
David Brazdil4b34f792018-05-08 16:49:02 +0100363LOCAL_SRC_FORCE_BLACKLIST := frameworks/base/config/hiddenapi-force-blacklist.txt
David Brazdil6f6a1262018-05-31 13:58:41 +0100364LOCAL_SRC_PUBLIC_API := $(INTERNAL_PLATFORM_DEX_API_FILE)
David Brazdil721bc8e2018-05-08 15:04:20 +0100365LOCAL_SRC_PRIVATE_API := $(INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE)
366LOCAL_SRC_REMOVED_API := $(INTERNAL_PLATFORM_REMOVED_DEX_API_FILE)
367
368LOCAL_SRC_ALL := \
369 $(LOCAL_SRC_GREYLIST) \
370 $(LOCAL_SRC_VENDOR_LIST) \
David Brazdil4b34f792018-05-08 16:49:02 +0100371 $(LOCAL_SRC_FORCE_BLACKLIST) \
David Brazdil6f6a1262018-05-31 13:58:41 +0100372 $(LOCAL_SRC_PUBLIC_API) \
David Brazdil721bc8e2018-05-08 15:04:20 +0100373 $(LOCAL_SRC_PRIVATE_API) \
374 $(LOCAL_SRC_REMOVED_API)
375
376define assert-has-no-overlap
377if [ ! -z "`comm -12 <(sort $(1)) <(sort $(2))`" ]; then \
378 echo "$(1) and $(2) should not overlap" 1>&2; \
379 comm -12 <(sort $(1)) <(sort $(2)) 1>&2; \
380 exit 1; \
381fi
382endef
383
384define assert-is-subset
385if [ ! -z "`comm -23 <(sort $(1)) <(sort $(2))`" ]; then \
386 echo "$(1) must be a subset of $(2)" 1>&2; \
387 comm -23 <(sort $(1)) <(sort $(2)) 1>&2; \
388 exit 1; \
389fi
390endef
391
392define assert-has-no-duplicates
393if [ ! -z "`sort $(1) | uniq -D`" ]; then \
394 echo "$(1) has duplicate entries" 1>&2; \
395 sort $(1) | uniq -D 1>&2; \
396 exit 1; \
397fi
398endef
399
400# The following rules build API lists in the build folder.
401# By not using files from the source tree, ART buildbots can mock these lists
402# or have alternative rules for building them. Other rules in the build system
403# should depend on the files in the build folder.
David Brazdilf16ac002018-01-26 11:13:35 +0000404
David Brazdil05855332018-04-25 11:15:07 +0100405# Merge light greylist from multiple files:
David Brazdil721bc8e2018-05-08 15:04:20 +0100406# (1) manual greylist LOCAL_SRC_GREYLIST
407# (2) list of usages from vendor apps LOCAL_SRC_VENDOR_LIST
408# (3) list of removed APIs in LOCAL_SRC_REMOVED_API
David Brazdil05855332018-04-25 11:15:07 +0100409# @removed does not imply private in Doclava. We must take the subset also
David Brazdil721bc8e2018-05-08 15:04:20 +0100410# in LOCAL_SRC_PRIVATE_API.
David Brazdil05855332018-04-25 11:15:07 +0100411# (4) list of serialization APIs
412# Automatically adds all methods which match the signatures in
413# REGEX_SERIALIZATION. These are greylisted in order to allow applications
414# to write their own serializers.
David Brazdil721bc8e2018-05-08 15:04:20 +0100415$(LOCAL_LIGHT_GREYLIST): REGEX_SERIALIZATION := \
David Brazdil357170b12018-03-26 16:02:23 +0100416 "readObject\(Ljava/io/ObjectInputStream;\)V" \
417 "readObjectNoData\(\)V" \
418 "readResolve\(\)Ljava/lang/Object;" \
419 "serialVersionUID:J" \
420 "serialPersistentFields:\[Ljava/io/ObjectStreamField;" \
421 "writeObject\(Ljava/io/ObjectOutputStream;\)V" \
422 "writeReplace\(\)Ljava/lang/Object;"
David Brazdil721bc8e2018-05-08 15:04:20 +0100423$(LOCAL_LIGHT_GREYLIST): $(LOCAL_SRC_ALL)
424 sort $(LOCAL_SRC_GREYLIST) $(LOCAL_SRC_VENDOR_LIST) \
425 <(grep -E "\->("$(subst $(space),"|",$(REGEX_SERIALIZATION))")$$" \
426 $(LOCAL_SRC_PRIVATE_API)) \
427 <(comm -12 <(sort $(LOCAL_SRC_REMOVED_API)) <(sort $(LOCAL_SRC_PRIVATE_API))) \
428 > $@
429 $(call assert-has-no-duplicates,$@)
430 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
David Brazdil4b34f792018-05-08 16:49:02 +0100431 $(call assert-has-no-overlap,$@,$(LOCAL_SRC_FORCE_BLACKLIST))
David Brazdilf16ac002018-01-26 11:13:35 +0000432
David Brazdil4c3c0312018-05-10 15:50:02 +0100433# Generate dark greylist as remaining classes and class members in the same
434# package as classes listed in the light greylist.
David Brazdil185f00e2018-05-08 15:28:31 +0100435# The algorithm is as follows:
436# (1) extract the class descriptor from each entry in LOCAL_LIGHT_GREYLIST
David Brazdil4c3c0312018-05-10 15:50:02 +0100437# (2) strip everything after the last forward-slash,
438# e.g. 'Lpackage/subpackage/class$inner;' turns into 'Lpackage/subpackage/'
439# (3) insert all entries from LOCAL_SRC_PRIVATE_API which begin with the package
440# name but do not contain another forward-slash in the class name, e.g.
441# matching '^Lpackage/subpackage/[^/;]*;'
David Brazdil185f00e2018-05-08 15:28:31 +0100442# (4) subtract entries shared with LOCAL_LIGHT_GREYLIST
David Brazdil721bc8e2018-05-08 15:04:20 +0100443$(LOCAL_DARK_GREYLIST): $(LOCAL_SRC_ALL) $(LOCAL_LIGHT_GREYLIST)
David Brazdil4b34f792018-05-08 16:49:02 +0100444 comm -13 <(sort $(LOCAL_LIGHT_GREYLIST) $(LOCAL_SRC_FORCE_BLACKLIST)) \
David Brazdil6f6a1262018-05-31 13:58:41 +0100445 <(cat $(LOCAL_SRC_PUBLIC_API) $(LOCAL_LIGHT_GREYLIST) | \
446 sed 's/\->.*//' | sed 's/\(.*\/\).*/\1/' | sort | uniq | \
David Brazdil4c3c0312018-05-10 15:50:02 +0100447 while read PKG_NAME; do \
448 grep -E "^$${PKG_NAME}[^/;]*;" $(LOCAL_SRC_PRIVATE_API); \
David Brazdil185f00e2018-05-08 15:28:31 +0100449 done | sort | uniq) \
450 > $@
David Brazdil721bc8e2018-05-08 15:04:20 +0100451 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
452 $(call assert-has-no-duplicates,$@)
453 $(call assert-has-no-overlap,$@,$(LOCAL_LIGHT_GREYLIST))
David Brazdil4b34f792018-05-08 16:49:02 +0100454 $(call assert-has-no-overlap,$@,$(LOCAL_SRC_FORCE_BLACKLIST))
David Brazdil36bbf122018-03-28 11:28:39 +0100455
David Brazdil721bc8e2018-05-08 15:04:20 +0100456# Generate blacklist as private API minus (light greylist plus dark greylist).
457$(LOCAL_BLACKLIST): $(LOCAL_SRC_ALL) $(LOCAL_LIGHT_GREYLIST) $(LOCAL_DARK_GREYLIST)
458 comm -13 <(sort $(LOCAL_LIGHT_GREYLIST) $(LOCAL_DARK_GREYLIST)) \
459 <(sort $(LOCAL_SRC_PRIVATE_API)) \
460 > $@
461 $(call assert-is-subset,$@,$(LOCAL_SRC_PRIVATE_API))
462 $(call assert-has-no-duplicates,$@)
463 $(call assert-has-no-overlap,$@,$(LOCAL_LIGHT_GREYLIST))
464 $(call assert-has-no-overlap,$@,$(LOCAL_DARK_GREYLIST))
David Brazdil4b34f792018-05-08 16:49:02 +0100465 $(call assert-is-subset,$(LOCAL_SRC_FORCE_BLACKLIST),$@)
David Brazdil0649c8d2018-01-22 22:23:13 +0000466
Bart Searsa8cc0582015-05-07 03:23:20 +0000467# Include subdirectory makefiles
468# ============================================================
469
470# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
471# team really wants is to build the stuff defined by this makefile.
472ifeq (,$(ONE_SHOT_MAKEFILE))
473include $(call first-makefiles-under,$(LOCAL_PATH))
474endif
475
Holly Jiuyu Sunbbc85802017-12-21 18:44:59 -0800476endif # ANDROID_BUILD_EMBEDDED