OSDN Git Service

ABIPicker: match package name by patterns
[android-x86/frameworks-base.git] / Android.mk
1 #
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 #
16 LOCAL_PATH := $(call my-dir)
17
18 # Load framework-specific path mappings used later in the build.
19 include $(LOCAL_PATH)/pathmap.mk
20
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
28 ifneq ($(ANDROID_BUILD_EMBEDDED),true)
29
30 # Copy AIDL files to be preprocessed and included in the SDK,
31 # specified relative to the root of the build tree.
32 # ============================================================
33 include $(CLEAR_VARS)
34
35 # This is used by ide.mk as the list of source files that are
36 # always included.
37 INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
38
39 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
40 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_SYSTEM_API_FILE))
41 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_TEST_API_FILE))
42 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE):apistubs/android/public/api/android.txt)
43 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_SYSTEM_API_FILE):apistubs/android/system/api/android.txt)
44 $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_TEST_API_FILE):apistubs/android/test/api/android.txt)
45
46 # sdk.atree needs to copy the whole dir: $(OUT_DOCS)/offline-sdk to the final zip.
47 # So keep offline-sdk-timestamp target here, and unzip offline-sdk-docs.zip to
48 # $(OUT_DOCS)/offline-sdk.
49 $(OUT_DOCS)/offline-sdk-timestamp: $(OUT_DOCS)/offline-sdk-docs-docs.zip
50         $(hide) rm -rf $(OUT_DOCS)/offline-sdk
51         $(hide) mkdir -p $(OUT_DOCS)/offline-sdk
52         ( unzip -qo $< -d $(OUT_DOCS)/offline-sdk && touch -f $@ ) || exit 1
53
54 .PHONY: docs offline-sdk-docs
55 docs offline-sdk-docs: $(OUT_DOCS)/offline-sdk-timestamp
56
57 SDK_METADATA_DIR :=$= $(call intermediates-dir-for,PACKAGING,framework-doc-stubs-metadata,,COMMON)
58 SDK_METADATA_FILES :=$= $(addprefix $(SDK_METADATA_DIR)/,\
59     activity_actions.txt \
60     broadcast_actions.txt \
61     categories.txt \
62     features.txt \
63     service_actions.txt \
64     widgets.txt)
65 SDK_METADATA :=$= $(firstword $(SDK_METADATA_FILES))
66 $(SDK_METADATA): .KATI_IMPLICIT_OUTPUTS := $(filter-out $(SDK_METADATA),$(SDK_METADATA_FILES))
67 $(SDK_METADATA): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/framework-doc-stubs-metadata.zip
68         rm -rf $(SDK_METADATA_DIR)
69         mkdir -p $(SDK_METADATA_DIR)
70         unzip -qo $< -d $(SDK_METADATA_DIR)
71
72 .PHONY: framework-doc-stubs
73 framework-doc-stubs: $(SDK_METADATA)
74
75 # Run this for checkbuild
76 checkbuild: doc-comment-check-docs
77
78 # ==== hiddenapi lists =======================================
79 ifneq ($(UNSAFE_DISABLE_HIDDENAPI_FLAGS),true)
80 $(call dist-for-goals,droidcore,$(INTERNAL_PLATFORM_HIDDENAPI_FLAGS))
81 $(call dist-for-goals,droidcore,$(INTERNAL_PLATFORM_HIDDENAPI_GREYLIST_METADATA))
82 endif  # UNSAFE_DISABLE_HIDDENAPI_FLAGS
83
84 # Include subdirectory makefiles
85 # ============================================================
86
87 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
88 # team really wants is to build the stuff defined by this makefile.
89 ifeq (,$(ONE_SHOT_MAKEFILE))
90 include $(call first-makefiles-under,$(LOCAL_PATH))
91 endif
92
93 endif # ANDROID_BUILD_EMBEDDED