OSDN Git Service

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