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