Android.mk revision 2f8caf6a74c5d6bcddbc4fae57945c83e85788bd
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#
16LOCAL_PATH := $(call my-dir)
17
18# We have a special case here where we build the library's resources
19# independently from its code, so we need to find where the resource
20# class source got placed in the course of building the resources.
21# Thus, the magic here.
22# Also, this module cannot depend directly on the R.java file; if it
23# did, the PRIVATE_* vars for R.java wouldn't be guaranteed to be correct.
24# Instead, it depends on the R.stamp file, which lists the corresponding
25# R.java file as a prerequisite.
26# TODO: find a more appropriate way to do this.
27framework_res_source_path := APPS/framework-res_intermediates/src
28
29# the library
30# ============================================================
31include $(CLEAR_VARS)
32
33# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
34LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
35
36# EventLogTags files.
37LOCAL_SRC_FILES += \
38       core/java/android/content/EventLogTags.logtags \
39       core/java/android/speech/tts/EventLogTags.logtags \
40       core/java/android/webkit/EventLogTags.logtags \
41
42# The following filters out code we are temporarily not including at all.
43# TODO: Move AWT and beans (and associated harmony code) back into libcore.
44# TODO: Maybe remove javax.microedition entirely?
45# TODO: Move SyncML (org.mobilecontrol.*) into its own library.
46LOCAL_SRC_FILES := $(filter-out \
47			org/mobilecontrol/% \
48			,$(LOCAL_SRC_FILES))
49
50## READ ME: ########################################################
51##
52## When updating this list of aidl files, consider if that aidl is
53## part of the SDK API.  If it is, also add it to the list below that
54## is preprocessed and distributed with the SDK.  This list should
55## not contain any aidl files for parcelables, but the one below should
56## if you intend for 3rd parties to be able to send those objects
57## across process boundaries.
58##
59## READ ME: ########################################################
60LOCAL_SRC_FILES += \
61	core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
62	core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \
63	core/java/android/accounts/IAccountManager.aidl \
64	core/java/android/accounts/IAccountManagerResponse.aidl \
65	core/java/android/accounts/IAccountAuthenticator.aidl \
66	core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
67	core/java/android/app/IActivityController.aidl \
68	core/java/android/app/IActivityPendingResult.aidl \
69	core/java/android/app/IAlarmManager.aidl \
70	core/java/android/app/IBackupAgent.aidl \
71	core/java/android/app/IInstrumentationWatcher.aidl \
72	core/java/android/app/INotificationManager.aidl \
73	core/java/android/app/IProcessObserver.aidl \
74	core/java/android/app/ISearchManager.aidl \
75	core/java/android/app/ISearchManagerCallback.aidl \
76	core/java/android/app/IServiceConnection.aidl \
77	core/java/android/app/IStopUserCallback.aidl \
78	core/java/android/app/IThumbnailReceiver.aidl \
79	core/java/android/app/IThumbnailRetriever.aidl \
80	core/java/android/app/ITransientNotification.aidl \
81	core/java/android/app/IUiAutomationConnection.aidl \
82	core/java/android/app/IUiModeManager.aidl \
83	core/java/android/app/IUserSwitchObserver.aidl \
84	core/java/android/app/IWallpaperManager.aidl \
85	core/java/android/app/IWallpaperManagerCallback.aidl \
86	core/java/android/app/admin/IDevicePolicyManager.aidl \
87	core/java/android/app/backup/IBackupManager.aidl \
88	core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
89	core/java/android/app/backup/IRestoreObserver.aidl \
90	core/java/android/app/backup/IRestoreSession.aidl \
91	core/java/android/bluetooth/IBluetooth.aidl \
92	core/java/android/bluetooth/IBluetoothA2dp.aidl \
93	core/java/android/bluetooth/IBluetoothCallback.aidl \
94	core/java/android/bluetooth/IBluetoothHeadset.aidl \
95	core/java/android/bluetooth/IBluetoothHeadsetPhone.aidl \
96	core/java/android/bluetooth/IBluetoothHealth.aidl \
97	core/java/android/bluetooth/IBluetoothHealthCallback.aidl \
98	core/java/android/bluetooth/IBluetoothInputDevice.aidl \
99	core/java/android/bluetooth/IBluetoothPan.aidl \
100	core/java/android/bluetooth/IBluetoothManager.aidl \
101	core/java/android/bluetooth/IBluetoothManagerCallback.aidl \
102	core/java/android/bluetooth/IBluetoothPbap.aidl \
103	core/java/android/bluetooth/IBluetoothStateChangeCallback.aidl \
104	core/java/android/bluetooth/IBluetoothGatt.aidl \
105	core/java/android/bluetooth/IBluetoothGattCallback.aidl \
106	core/java/android/bluetooth/IBluetoothGattServerCallback.aidl \
107	core/java/android/content/IClipboard.aidl \
108	core/java/android/content/IContentService.aidl \
109	core/java/android/content/IIntentReceiver.aidl \
110	core/java/android/content/IIntentSender.aidl \
111	core/java/android/content/IOnPrimaryClipChangedListener.aidl \
112	core/java/android/content/ISyncAdapter.aidl \
113	core/java/android/content/ISyncContext.aidl \
114	core/java/android/content/ISyncStatusObserver.aidl \
115	core/java/android/content/pm/IPackageDataObserver.aidl \
116	core/java/android/content/pm/IPackageDeleteObserver.aidl \
117	core/java/android/content/pm/IPackageInstallObserver.aidl \
118	core/java/android/content/pm/IPackageManager.aidl \
119	core/java/android/content/pm/IPackageMoveObserver.aidl \
120	core/java/android/content/pm/IPackageStatsObserver.aidl \
121	core/java/android/database/IContentObserver.aidl \
122	core/java/android/hardware/ISerialManager.aidl \
123	core/java/android/hardware/display/IDisplayManager.aidl \
124	core/java/android/hardware/display/IDisplayManagerCallback.aidl \
125	core/java/android/hardware/input/IInputManager.aidl \
126	core/java/android/hardware/input/IInputDevicesChangedListener.aidl \
127	core/java/android/hardware/location/IGeofenceHardware.aidl \
128	core/java/android/hardware/location/IGeofenceHardwareCallback.aidl \
129	core/java/android/hardware/usb/IUsbManager.aidl \
130	core/java/android/net/IConnectivityManager.aidl \
131	core/java/android/net/INetworkManagementEventObserver.aidl \
132	core/java/android/net/INetworkPolicyListener.aidl \
133	core/java/android/net/INetworkPolicyManager.aidl \
134	core/java/android/net/INetworkStatsService.aidl \
135	core/java/android/net/INetworkStatsSession.aidl \
136	core/java/android/net/nsd/INsdManager.aidl \
137	core/java/android/nfc/INdefPushCallback.aidl \
138	core/java/android/nfc/INfcAdapter.aidl \
139	core/java/android/nfc/INfcAdapterExtras.aidl \
140	core/java/android/nfc/INfcTag.aidl \
141	core/java/android/os/ICancellationSignal.aidl \
142	core/java/android/os/IHardwareService.aidl \
143	core/java/android/os/IMessenger.aidl \
144	core/java/android/os/INetworkManagementService.aidl \
145	core/java/android/os/IPermissionController.aidl \
146	core/java/android/os/IPowerManager.aidl \
147	core/java/android/os/IRemoteCallback.aidl \
148	core/java/android/os/ISchedulingPolicyService.aidl \
149	core/java/android/os/IUpdateLock.aidl \
150	core/java/android/os/IUserManager.aidl \
151	core/java/android/os/IVibratorService.aidl \
152	core/java/android/service/notification/INotificationListener.aidl \
153	core/java/android/service/dreams/IDreamManager.aidl \
154	core/java/android/service/dreams/IDreamService.aidl \
155	core/java/android/service/wallpaper/IWallpaperConnection.aidl \
156	core/java/android/service/wallpaper/IWallpaperEngine.aidl \
157	core/java/android/service/wallpaper/IWallpaperService.aidl \
158	core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\
159	core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\
160	core/java/android/view/accessibility/IAccessibilityManager.aidl \
161	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
162	core/java/android/view/IApplicationToken.aidl \
163	core/java/android/view/IMagnificationCallbacks.aidl \
164	core/java/android/view/IInputFilter.aidl \
165	core/java/android/view/IInputFilterHost.aidl \
166	core/java/android/view/IOnKeyguardExitResult.aidl \
167	core/java/android/view/IRotationWatcher.aidl \
168	core/java/android/view/IWindow.aidl \
169	core/java/android/view/IWindowFocusObserver.aidl \
170	core/java/android/view/IWindowId.aidl \
171	core/java/android/view/IWindowManager.aidl \
172	core/java/android/view/IWindowSession.aidl \
173	core/java/android/speech/IRecognitionListener.aidl \
174	core/java/android/speech/IRecognitionService.aidl \
175	core/java/android/speech/tts/ITextToSpeechCallback.aidl \
176	core/java/android/speech/tts/ITextToSpeechService.aidl \
177	core/java/com/android/internal/app/IAppOpsCallback.aidl \
178	core/java/com/android/internal/app/IAppOpsService.aidl \
179	core/java/com/android/internal/app/IBatteryStats.aidl \
180	core/java/com/android/internal/app/IUsageStats.aidl \
181	core/java/com/android/internal/app/IMediaContainerService.aidl \
182	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
183	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
184	core/java/com/android/internal/backup/IBackupTransport.aidl \
185	core/java/com/android/internal/backup/IObbBackupService.aidl \
186	core/java/com/android/internal/policy/IFaceLockCallback.aidl \
187	core/java/com/android/internal/policy/IFaceLockInterface.aidl \
188	core/java/com/android/internal/os/IDropBoxManagerService.aidl \
189	core/java/com/android/internal/os/IResultReceiver.aidl \
190	core/java/com/android/internal/statusbar/IStatusBar.aidl \
191	core/java/com/android/internal/statusbar/IStatusBarService.aidl \
192	core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
193	core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
194	core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
195	core/java/com/android/internal/textservice/ITextServicesManager.aidl \
196	core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
197	core/java/com/android/internal/view/IInputContext.aidl \
198	core/java/com/android/internal/view/IInputContextCallback.aidl \
199	core/java/com/android/internal/view/IInputMethod.aidl \
200	core/java/com/android/internal/view/IInputMethodClient.aidl \
201	core/java/com/android/internal/view/IInputMethodManager.aidl \
202	core/java/com/android/internal/view/IInputMethodSession.aidl \
203	core/java/com/android/internal/view/IInputSessionCallback.aidl \
204	core/java/com/android/internal/widget/ILockSettings.aidl \
205	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
206	core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
207	keystore/java/android/security/IKeyChainAliasCallback.aidl \
208	keystore/java/android/security/IKeyChainService.aidl \
209	location/java/android/location/ICountryDetector.aidl \
210	location/java/android/location/ICountryListener.aidl \
211	location/java/android/location/IGeocodeProvider.aidl \
212	location/java/android/location/IGeofenceProvider.aidl \
213	location/java/android/location/IGpsStatusListener.aidl \
214	location/java/android/location/IGpsStatusProvider.aidl \
215	location/java/android/location/ILocationListener.aidl \
216	location/java/android/location/ILocationManager.aidl \
217	location/java/android/location/IGpsGeofenceHardware.aidl \
218	location/java/android/location/INetInitiatedListener.aidl \
219	location/java/com/android/internal/location/ILocationProvider.aidl \
220	media/java/android/media/IAudioService.aidl \
221	media/java/android/media/IAudioFocusDispatcher.aidl \
222	media/java/android/media/IAudioRoutesObserver.aidl \
223	media/java/android/media/IMediaScannerListener.aidl \
224	media/java/android/media/IMediaScannerService.aidl \
225	media/java/android/media/IRemoteControlClient.aidl \
226	media/java/android/media/IRemoteControlDisplay.aidl \
227	media/java/android/media/IRemoteVolumeObserver.aidl \
228	media/java/android/media/IRingtonePlayer.aidl \
229	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
230	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
231	telephony/java/com/android/internal/telephony/ITelephony.aidl \
232	telephony/java/com/android/internal/telephony/ISms.aidl \
233	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
234	telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
235	wifi/java/android/net/wifi/IWifiManager.aidl \
236	wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl
237#
238
239
240# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
241LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
242
243LOCAL_INTERMEDIATE_SOURCES := \
244			$(framework_res_source_path)/android/R.java \
245			$(framework_res_source_path)/android/Manifest.java \
246			$(framework_res_source_path)/com/android/internal/R.java
247
248LOCAL_NO_STANDARD_LIBRARIES := true
249LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext okhttp
250
251LOCAL_MODULE := framework
252LOCAL_MODULE_CLASS := JAVA_LIBRARIES
253
254# List of classes and interfaces which should be loaded by the Zygote.
255LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
256
257#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
258
259LOCAL_DX_FLAGS := --core-library
260
261include $(BUILD_JAVA_LIBRARY)
262
263# Make sure that R.java and Manifest.java are built before we build
264# the source for this library.
265framework_res_R_stamp := \
266	$(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
267$(full_classes_compiled_jar): $(framework_res_R_stamp)
268
269# Make sure that framework-res is installed when framework is.
270$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk
271
272framework_built := $(call java-lib-deps,framework)
273
274# AIDL files to be preprocessed and included in the SDK,
275# relative to the root of the build tree.
276# ============================================================
277aidl_files := \
278	frameworks/base/core/java/android/accounts/IAccountManager.aidl \
279	frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
280	frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
281	frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
282	frameworks/base/core/java/android/app/Notification.aidl \
283	frameworks/base/core/java/android/app/PendingIntent.aidl \
284	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
285	frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \
286	frameworks/base/core/java/android/content/ComponentName.aidl \
287	frameworks/base/core/java/android/content/Intent.aidl \
288	frameworks/base/core/java/android/content/IntentSender.aidl \
289	frameworks/base/core/java/android/content/PeriodicSync.aidl \
290	frameworks/base/core/java/android/content/SyncStats.aidl \
291	frameworks/base/core/java/android/content/res/Configuration.aidl \
292	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
293	frameworks/base/core/java/android/net/Uri.aidl \
294	frameworks/base/core/java/android/nfc/NdefMessage.aidl \
295	frameworks/base/core/java/android/nfc/NdefRecord.aidl \
296	frameworks/base/core/java/android/nfc/Tag.aidl \
297	frameworks/base/core/java/android/os/Bundle.aidl \
298	frameworks/base/core/java/android/os/DropBoxManager.aidl \
299	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
300	frameworks/base/core/java/android/os/ParcelUuid.aidl \
301	frameworks/base/core/java/android/view/KeyEvent.aidl \
302	frameworks/base/core/java/android/view/MotionEvent.aidl \
303	frameworks/base/core/java/android/view/Surface.aidl \
304	frameworks/base/core/java/android/view/WindowManager.aidl \
305	frameworks/base/core/java/android/widget/RemoteViews.aidl \
306	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
307	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
308	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
309	frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \
310	frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
311	frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
312	frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
313	frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
314	frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
315	frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
316	frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
317	frameworks/base/graphics/java/android/graphics/Rect.aidl \
318	frameworks/base/graphics/java/android/graphics/Region.aidl \
319	frameworks/base/location/java/android/location/Criteria.aidl \
320	frameworks/base/location/java/android/location/Geofence.aidl \
321	frameworks/base/location/java/android/location/Location.aidl \
322	frameworks/base/location/java/android/location/LocationRequest.aidl \
323	frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \
324	frameworks/base/location/java/com/android/internal/location/ProviderRequest.aidl \
325	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
326	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
327	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
328
329gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
330$(gen): PRIVATE_SRC_FILES := $(aidl_files)
331ALL_SDK_FILES += $(gen)
332$(gen): $(aidl_files) | $(AIDL)
333		@echo Aidl Preprocess: $@
334		$(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
335
336# the documentation
337# ============================================================
338
339# TODO: deal with com/google/android/googleapps
340packages_to_document := \
341	android \
342	javax/microedition/khronos
343
344# Search through the base framework dirs for these packages.
345# The result will be relative to frameworks/base.
346fwbase_dirs_to_document := \
347	test-runner/src \
348	$(patsubst $(LOCAL_PATH)/%,%, \
349	  $(wildcard \
350	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
351	      $(addprefix $(dir)/, $(packages_to_document)) \
352	     ) \
353	   ) \
354	 )
355
356# include definition of libcore_to_document
357include libcore/Docs.mk
358
359# include definition of junit_to_document
360include external/junit/Common.mk
361
362non_base_dirs := \
363	../../external/apache-http/src/org/apache/http \
364	../opt/telephony/src/java/android/telephony \
365	../opt/telephony/src/java/android/telephony/gsm \
366	../opt/net/voip/src/java/android/net/rtp \
367	../opt/net/voip/src/java/android/net/sip
368
369# These are relative to frameworks/base
370dirs_to_check_apis := \
371  $(fwbase_dirs_to_document) \
372	$(non_base_dirs)
373
374# These are relative to frameworks/base
375# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
376dirs_to_document := \
377	$(dirs_to_check_apis) \
378  $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS))
379
380# These are relative to frameworks/base
381html_dirs := \
382	$(FRAMEWORKS_BASE_SUBDIRS) \
383	$(non_base_dirs)
384
385# Common sources for doc check and api check
386common_src_files := \
387	$(call find-other-html-files, $(html_dirs)) \
388	$(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore)) \
389	$(addprefix ../../external/junit/, $(call junit_to_document, $(LOCAL_PATH)/../../external/junit))
390
391# These are relative to frameworks/base
392framework_docs_LOCAL_SRC_FILES := \
393	$(call find-other-java-files, $(dirs_to_document)) \
394	$(common_src_files)
395
396# These are relative to frameworks/base
397framework_docs_LOCAL_API_CHECK_SRC_FILES := \
398	$(call find-other-java-files, $(dirs_to_check_apis)) \
399	$(common_src_files)
400
401# This is used by ide.mk as the list of source files that are
402# always included.
403INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
404
405framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
406	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
407
408framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
409			$(framework_res_source_path)/android/R.java \
410			$(framework_res_source_path)/android/Manifest.java \
411			$(framework_res_source_path)/com/android/internal/R.java
412
413framework_docs_LOCAL_JAVA_LIBRARIES := \
414			bouncycastle \
415			core \
416			okhttp \
417			ext \
418			framework \
419			mms-common \
420			telephony-common \
421			voip-common \
422
423framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
424framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
425# The since flag (-since N.xml API_LEVEL) is used to add API Level information
426# to the reference documentation. Must be in order of oldest to newest.
427framework_docs_LOCAL_DROIDDOC_OPTIONS := \
428    -knowntags ./frameworks/base/docs/knowntags.txt \
429    -since $(SRC_API_DIR)/1.xml 1 \
430    -since $(SRC_API_DIR)/2.xml 2 \
431    -since $(SRC_API_DIR)/3.xml 3 \
432    -since $(SRC_API_DIR)/4.xml 4 \
433    -since $(SRC_API_DIR)/5.xml 5 \
434    -since $(SRC_API_DIR)/6.xml 6 \
435    -since $(SRC_API_DIR)/7.xml 7 \
436    -since $(SRC_API_DIR)/8.xml 8 \
437    -since $(SRC_API_DIR)/9.xml 9 \
438    -since $(SRC_API_DIR)/10.xml 10 \
439    -since $(SRC_API_DIR)/11.xml 11 \
440    -since $(SRC_API_DIR)/12.xml 12 \
441    -since $(SRC_API_DIR)/13.xml 13 \
442    -since $(SRC_API_DIR)/14.txt 14 \
443    -since $(SRC_API_DIR)/15.txt 15 \
444    -since $(SRC_API_DIR)/16.txt 16 \
445    -since $(SRC_API_DIR)/17.txt 17 \
446    -since $(SRC_API_DIR)/18.txt 18 \
447		-werror -hide 113 \
448		-overview $(LOCAL_PATH)/core/java/overview.html
449
450framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
451
452framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
453    frameworks/base/docs/knowntags.txt
454
455sample_dir := development/samples
456
457# the list here should match the list of samples included in the sdk samples package
458# (see development/build/sdk.atree)
459# remove htmlified samples for now -- samples are still available through the SDK
460# web_docs_sample_code_flags := \
461		-hdf android.hasSamples 1 \
462		-samplecode $(sample_dir)/AccelerometerPlay \
463		            resources/samples/AccelerometerPlay "Accelerometer Play" \
464		-samplecode $(sample_dir)/ActionBarCompat \
465		            resources/samples/ActionBarCompat "Action Bar Compatibility" \
466                -samplecode $(sample_dir)/AndroidBeamDemo \
467		            resources/samples/AndroidBeamDemo "Android Beam Demo" \
468		-samplecode $(sample_dir)/ApiDemos \
469		            resources/samples/ApiDemos "API Demos" \
470		-samplecode $(sample_dir)/Support4Demos \
471		            resources/samples/Support4Demos "API 4+ Support Demos" \
472		-samplecode $(sample_dir)/Support13Demos \
473		            resources/samples/Support13Demos "API 13+ Support Demos" \
474		-samplecode $(sample_dir)/BackupRestore \
475		            resources/samples/BackupRestore "Backup and Restore" \
476		-samplecode $(sample_dir)/BluetoothChat \
477		            resources/samples/BluetoothChat "Bluetooth Chat" \
478		-samplecode $(sample_dir)/BluetoothHDP \
479		            resources/samples/BluetoothHDP "Bluetooth HDP Demo" \
480		-samplecode $(sample_dir)/BusinessCard \
481		            resources/samples/BusinessCard "Business Card" \
482		-samplecode $(sample_dir)/ContactManager \
483		            resources/samples/ContactManager "Contact Manager" \
484		-samplecode $(sample_dir)/CubeLiveWallpaper \
485		            resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
486		-samplecode $(sample_dir)/Home \
487		            resources/samples/Home "Home" \
488		-samplecode $(sample_dir)/HoneycombGallery \
489		            resources/samples/HoneycombGallery "Honeycomb Gallery" \
490		-samplecode $(sample_dir)/JetBoy \
491		            resources/samples/JetBoy "JetBoy" \
492		-samplecode $(sample_dir)/KeyChainDemo \
493		            resources/samples/KeyChainDemo "KeyChain Demo" \
494		-samplecode $(sample_dir)/LunarLander \
495		            resources/samples/LunarLander "Lunar Lander" \
496		-samplecode $(sample_dir)/training/ads-and-ux \
497		            resources/samples/training/ads-and-ux "Mobile Advertisement Integration" \
498		-samplecode $(sample_dir)/MultiResolution \
499		            resources/samples/MultiResolution "Multiple Resolutions" \
500		-samplecode $(sample_dir)/training/multiscreen/newsreader \
501		            resources/samples/newsreader "News Reader" \
502		-samplecode $(sample_dir)/NotePad \
503		            resources/samples/NotePad "Note Pad" \
504		-samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \
505		            resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \
506		-samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \
507		            resources/samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \
508		-samplecode $(sample_dir)/SampleSyncAdapter \
509		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
510		-samplecode $(sample_dir)/RandomMusicPlayer \
511		            resources/samples/RandomMusicPlayer "Random Music Player" \
512		-samplecode $(sample_dir)/RenderScript \
513		            resources/samples/RenderScript "RenderScript" \
514		-samplecode $(sample_dir)/SearchableDictionary \
515		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
516		-samplecode $(sample_dir)/SipDemo \
517		            resources/samples/SipDemo "SIP Demo" \
518		-samplecode $(sample_dir)/Snake \
519		            resources/samples/Snake "Snake" \
520		-samplecode $(sample_dir)/SoftKeyboard \
521		            resources/samples/SoftKeyboard "Soft Keyboard" \
522		-samplecode $(sample_dir)/Spinner  \
523		            resources/samples/Spinner "Spinner" \
524		-samplecode $(sample_dir)/SpinnerTest \
525		            resources/samples/SpinnerTest "SpinnerTest" \
526		-samplecode $(sample_dir)/StackWidget \
527		            resources/samples/StackWidget "StackView Widget" \
528		-samplecode $(sample_dir)/TicTacToeLib  \
529		            resources/samples/TicTacToeLib "TicTacToeLib" \
530		-samplecode $(sample_dir)/TicTacToeMain \
531		            resources/samples/TicTacToeMain "TicTacToeMain" \
532		-samplecode $(sample_dir)/ToyVpn \
533		            resources/samples/ToyVpn "Toy VPN Client" \
534		-samplecode $(sample_dir)/USB \
535		            resources/samples/USB "USB" \
536		-samplecode $(sample_dir)/WeatherListWidget \
537		            resources/samples/WeatherListWidget "Weather List Widget" \
538		-samplecode $(sample_dir)/WiFiDirectDemo \
539                            resources/samples/WiFiDirectDemo "Wi-Fi Direct Demo" \
540		-samplecode $(sample_dir)/Wiktionary \
541		            resources/samples/Wiktionary "Wiktionary" \
542		-samplecode $(sample_dir)/WiktionarySimple \
543		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
544		-samplecode $(sample_dir)/VoiceRecognitionService \
545		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
546		-samplecode $(sample_dir)/VoicemailProviderDemo \
547		            resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \
548		-samplecode $(sample_dir)/XmlAdapters \
549		            resources/samples/XmlAdapters "XML Adapters" \
550		-samplecode $(sample_dir)/TtsEngine \
551		            resources/samples/TtsEngine "Text To Speech Engine" \
552		-samplecode $(sample_dir)/training/device-management-policy \
553		            resources/samples/training/device-management-policy "Device Management Policy"
554
555
556## SDK version identifiers used in the published docs
557  # major[.minor] version for current SDK. (full releases only)
558framework_docs_SDK_VERSION:=4.2
559  # release version (ie "Release x")  (full releases only)
560framework_docs_SDK_REL_ID:=1
561
562framework_docs_LOCAL_DROIDDOC_OPTIONS += \
563		-hdf sdk.version $(framework_docs_SDK_VERSION) \
564		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
565		-hdf sdk.preview 0 \
566
567# ====  the api stubs and current.xml ===========================
568include $(CLEAR_VARS)
569
570LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
571LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
572LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
573LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
574LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
575LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
576LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
577LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
578
579LOCAL_MODULE := api-stubs
580
581LOCAL_DROIDDOC_OPTIONS:=\
582		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
583		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
584		-api $(INTERNAL_PLATFORM_API_FILE) \
585		-nodocs
586
587LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
588
589LOCAL_UNINSTALLABLE_MODULE := true
590
591include $(BUILD_DROIDDOC)
592
593# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
594$(full_target): $(framework_built) $(gen)
595$(INTERNAL_PLATFORM_API_FILE): $(full_target)
596$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
597
598# ====  check javadoc comments but don't generate docs ========
599include $(CLEAR_VARS)
600
601LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
602LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
603LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
604LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
605LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
606LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
607LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
608LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
609
610LOCAL_MODULE := doc-comment-check
611
612LOCAL_DROIDDOC_OPTIONS:=\
613		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
614		-parsecomments
615
616LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
617
618LOCAL_UNINSTALLABLE_MODULE := true
619
620include $(BUILD_DROIDDOC)
621
622# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
623$(full_target): $(framework_built) $(gen)
624
625# Run this for checkbuild
626.PHONY: checkbuild
627checkbuild: doc-comment-check-docs
628
629# ====  static html in the pdk ==================================
630include $(CLEAR_VARS)
631
632LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
633LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
634LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
635LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
636LOCAL_DROIDDOC_HTML_DIR:=../../vendor/pdk/data/google/docs
637LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
638LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
639
640LOCAL_MODULE := offline-pdk
641
642LOCAL_DROIDDOC_OPTIONS:=\
643		-hdf android.whichdoc offline \
644		-hdf android.whichmodule $(LOCAL_MODULE)
645
646LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-pdk
647
648include $(BUILD_DROIDDOC)
649
650
651# ====  static html in the sdk ==================================
652include $(CLEAR_VARS)
653
654LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
655LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
656LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
657LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
658LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
659LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
660LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
661LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
662
663LOCAL_MODULE := offline-sdk
664
665LOCAL_DROIDDOC_OPTIONS:=\
666		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
667                $(web_docs_sample_code_flags) \
668                -offlinemode \
669		-title "Android SDK" \
670		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
671		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
672		-sdkvalues $(OUT_DOCS) \
673		-hdf android.whichdoc offline
674
675
676LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
677
678include $(BUILD_DROIDDOC)
679
680static_doc_index_redirect := $(out_dir)/index.html
681$(static_doc_index_redirect): \
682	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
683	$(hide) mkdir -p $(dir $@)
684	$(hide) $(ACP) $< $@
685
686$(full_target): $(static_doc_index_redirect)
687$(full_target): $(framework_built)
688
689# ==== docs for the web (on the androiddevdocs app engine server) =======================
690include $(CLEAR_VARS)
691
692LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
693LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
694LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
695LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
696LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
697LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
698LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
699LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
700LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
701
702LOCAL_MODULE := online-sdk
703
704LOCAL_DROIDDOC_OPTIONS:= \
705		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
706		$(web_docs_sample_code_flags) \
707		-toroot / \
708		-hdf android.whichdoc online \
709		-hdf template.showLanguageMenu true
710
711LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
712
713include $(BUILD_DROIDDOC)
714
715# ==== docs for the web (on the devsite app engine server) =======================
716include $(CLEAR_VARS)
717LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
718LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
719LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
720LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
721LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
722LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
723LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
724LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
725LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
726# specify a second html input dir and an output path relative to OUT_DIR)
727LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
728
729LOCAL_MODULE := ds
730
731LOCAL_DROIDDOC_OPTIONS:= \
732		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
733		$(web_docs_sample_code_flags) \
734		-devsite \
735		-toroot / \
736		-hdf android.whichdoc online \
737		-hdf devsite true
738
739LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
740
741include $(BUILD_DROIDDOC)
742
743# ==== docs that have all of the stuff that's @hidden =======================
744include $(CLEAR_VARS)
745
746LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
747LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
748LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
749LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
750LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
751LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
752LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
753LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
754
755LOCAL_MODULE := hidden
756LOCAL_DROIDDOC_OPTIONS:=\
757		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
758		-title "Android SDK - Including hidden APIs."
759#		-hidden
760
761LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
762
763include $(BUILD_DROIDDOC)
764
765# Build ext.jar
766# ============================================================
767
768# NOTICE notes for non-obvious sections
769# apache-http - covered by the Apache Commons section.
770
771
772ext_dirs := \
773	../../external/nist-sip/java \
774	../../external/apache-http/src \
775	../../external/tagsoup/src \
776	../../external/libphonenumber/java/src
777
778ext_src_files := $(call all-java-files-under,$(ext_dirs))
779
780ext_res_dirs := \
781	../../external/libphonenumber/java/src
782
783# ====  the library  =========================================
784include $(CLEAR_VARS)
785
786LOCAL_SRC_FILES := $(ext_src_files)
787
788LOCAL_NO_STANDARD_LIBRARIES := true
789LOCAL_JAVA_LIBRARIES := core
790LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
791LOCAL_MODULE_TAGS := optional
792LOCAL_MODULE := ext
793
794LOCAL_DX_FLAGS := --core-library
795
796include $(BUILD_JAVA_LIBRARY)
797
798
799# Include subdirectory makefiles
800# ============================================================
801
802# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
803# team really wants is to build the stuff defined by this makefile.
804ifeq (,$(ONE_SHOT_MAKEFILE))
805include $(call first-makefiles-under,$(LOCAL_PATH))
806endif
807