OSDN Git Service

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