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