OSDN Git Service

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