blob: 678ae558d0a1e6ed83a78de2247cd6bde81e3949 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(call my-dir)
17
18# We have a special case here where we build the library's resources
19# independently from its code, so we need to find where the resource
20# class source got placed in the course of building the resources.
21# Thus, the magic here.
22# Also, this module cannot depend directly on the R.java file; if it
23# did, the PRIVATE_* vars for R.java wouldn't be guaranteed to be correct.
24# Instead, it depends on the R.stamp file, which lists the corresponding
25# R.java file as a prerequisite.
26# TODO: find a more appropriate way to do this.
Joe Onorato80a60ba2010-07-14 19:58:30 -070027framework_res_source_path := APPS/framework-res_intermediates/src
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
29# the library
30# ============================================================
31include $(CLEAR_VARS)
32
33# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
34LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
35
Brad Fitzpatricka63730d2010-02-07 22:25:34 -080036# EventLogTags files.
Dan Egnor18e93962010-02-10 19:27:58 -080037LOCAL_SRC_FILES += \
38 core/java/android/content/EventLogTags.logtags \
Narayan Kamath6dabb632011-07-08 12:13:03 +010039 core/java/android/speech/tts/EventLogTags.logtags \
Dan Egnor18e93962010-02-10 19:27:58 -080040 core/java/android/webkit/EventLogTags.logtags \
41 telephony/java/com/android/internal/telephony/EventLogTags.logtags \
Brad Fitzpatricka63730d2010-02-07 22:25:34 -080042
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043# The following filters out code we are temporarily not including at all.
44# TODO: Move AWT and beans (and associated harmony code) back into libcore.
45# TODO: Maybe remove javax.microedition entirely?
46# TODO: Move SyncML (org.mobilecontrol.*) into its own library.
47LOCAL_SRC_FILES := $(filter-out \
48 org/mobilecontrol/% \
49 ,$(LOCAL_SRC_FILES))
50
51## READ ME: ########################################################
52##
Mike Lockwoodc1e8aa42009-04-06 10:52:24 -070053## When updating this list of aidl files, consider if that aidl is
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054## part of the SDK API. If it is, also add it to the list below that
55## is preprocessed and distributed with the SDK. This list should
56## not contain any aidl files for parcelables, but the one below should
57## if you intend for 3rd parties to be able to send those objects
58## across process boundaries.
59##
60## READ ME: ########################################################
61LOCAL_SRC_FILES += \
svetoslavganov75986cf2009-05-14 22:28:01 -070062 core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
Svetoslav Ganov42138042012-03-20 11:51:39 -070063 core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \
Svetoslav Ganovfefd20e2012-04-19 21:44:35 -070064 core/java/android/accessibilityservice/IAccessibilityServiceClientCallback.aidl \
Fred Quintana60307342009-03-24 22:48:12 -070065 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 \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070069 core/java/android/app/IActivityController.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 core/java/android/app/IActivityPendingResult.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 core/java/android/app/IAlarmManager.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070072 core/java/android/app/IBackupAgent.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 core/java/android/app/IInstrumentationWatcher.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 core/java/android/app/INotificationManager.aidl \
Jeff Sharkeya4620792011-05-20 15:29:23 -070075 core/java/android/app/IProcessObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 core/java/android/app/ISearchManager.aidl \
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +010077 core/java/android/app/ISearchManagerCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 core/java/android/app/IServiceConnection.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 core/java/android/app/IThumbnailReceiver.aidl \
Dianne Hackbornf26fd992011-04-08 18:14:09 -070080 core/java/android/app/IThumbnailRetriever.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 core/java/android/app/ITransientNotification.aidl \
Tobias Haamel27b28b32010-02-09 23:09:17 +010082 core/java/android/app/IUiModeManager.aidl \
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070083 core/java/android/app/IWallpaperManager.aidl \
84 core/java/android/app/IWallpaperManagerCallback.aidl \
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080085 core/java/android/app/admin/IDevicePolicyManager.aidl \
Christopher Tate45281862010-03-05 15:46:30 -080086 core/java/android/app/backup/IBackupManager.aidl \
Christopher Tate4a627c72011-04-01 14:43:32 -070087 core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
Christopher Tate45281862010-03-05 15:46:30 -080088 core/java/android/app/backup/IRestoreObserver.aidl \
89 core/java/android/app/backup/IRestoreSession.aidl \
Nick Pellybd022f42009-08-14 18:33:38 -070090 core/java/android/bluetooth/IBluetooth.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 core/java/android/bluetooth/IBluetoothA2dp.aidl \
Nick Pelly16fb88a2009-10-07 07:44:03 +020092 core/java/android/bluetooth/IBluetoothCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 core/java/android/bluetooth/IBluetoothHeadset.aidl \
Jaikumar Ganesh2ea1e852011-04-01 16:33:09 -070094 core/java/android/bluetooth/IBluetoothHealthCallback.aidl \
Jiafa Liu3f416732009-07-02 16:36:02 +080095 core/java/android/bluetooth/IBluetoothPbap.aidl \
Jaikumar Ganeshef2cb7c2011-07-21 18:13:38 -070096 core/java/android/bluetooth/IBluetoothStateChangeCallback.aidl \
Jeff Brown4c1241d2012-02-02 17:05:00 -080097 core/java/android/content/ICancellationSignal.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -070098 core/java/android/content/IClipboard.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070099 core/java/android/content/IContentService.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700100 core/java/android/content/IIntentReceiver.aidl \
101 core/java/android/content/IIntentSender.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -0700102 core/java/android/content/IOnPrimaryClipChangedListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 core/java/android/content/ISyncAdapter.aidl \
104 core/java/android/content/ISyncContext.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700105 core/java/android/content/ISyncStatusObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 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 \
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -0800110 core/java/android/content/pm/IPackageMoveObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 core/java/android/content/pm/IPackageStatsObserver.aidl \
112 core/java/android/database/IContentObserver.aidl \
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400113 core/java/android/hardware/ISerialManager.aidl \
Jeff Brown4532e612012-04-05 14:27:12 -0700114 core/java/android/hardware/input/IInputManager.aidl \
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700115 core/java/android/hardware/input/IInputDevicesChangedListener.aidl \
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800116 core/java/android/hardware/usb/IUsbManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 core/java/android/net/IConnectivityManager.aidl \
San Mehat4d02d002010-01-22 16:07:46 -0800118 core/java/android/net/INetworkManagementEventObserver.aidl \
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400119 core/java/android/net/IThrottleManager.aidl \
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700120 core/java/android/net/INetworkPolicyListener.aidl \
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700121 core/java/android/net/INetworkPolicyManager.aidl \
Jeff Sharkey75279902011-05-24 18:39:45 -0700122 core/java/android/net/INetworkStatsService.aidl \
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -0700123 core/java/android/net/INetworkStatsSession.aidl \
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700124 core/java/android/net/nsd/INsdManager.aidl \
Jason parks01425362011-05-24 02:57:37 -0700125 core/java/android/nfc/INdefPushCallback.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700126 core/java/android/nfc/INfcAdapter.aidl \
Nick Pelly367f41f2011-03-08 11:43:30 -0800127 core/java/android/nfc/INfcAdapterExtras.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700128 core/java/android/nfc/INfcTag.aidl \
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400129 core/java/android/os/IHardwareService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 core/java/android/os/IMessenger.aidl \
San Mehat873f2142010-01-14 10:25:07 -0800131 core/java/android/os/INetworkManagementService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 core/java/android/os/IPermissionController.aidl \
133 core/java/android/os/IPowerManager.aidl \
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700134 core/java/android/os/IRemoteCallback.aidl \
Glenn Kasten07b04652012-04-23 15:00:43 -0700135 core/java/android/os/ISchedulingPolicyService.aidl \
Christopher Tate8662cab52012-02-23 14:59:36 -0800136 core/java/android/os/IUpdateLock.aidl \
Mike Lockwood3a322132009-11-24 00:30:52 -0500137 core/java/android/os/IVibratorService.aidl \
Daniel Sandler7d276c32012-01-30 14:33:52 -0500138 core/java/android/service/dreams/IDreamManager.aidl \
139 core/java/android/service/dreams/IDreamService.aidl \
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700140 core/java/android/service/wallpaper/IWallpaperConnection.aidl \
141 core/java/android/service/wallpaper/IWallpaperEngine.aidl \
142 core/java/android/service/wallpaper/IWallpaperService.aidl \
143 core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\
144 core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\
svetoslavganov75986cf2009-05-14 22:28:01 -0700145 core/java/android/view/accessibility/IAccessibilityManager.aidl \
146 core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 core/java/android/view/IApplicationToken.aidl \
148 core/java/android/view/IOnKeyguardExitResult.aidl \
149 core/java/android/view/IRotationWatcher.aidl \
150 core/java/android/view/IWindow.aidl \
151 core/java/android/view/IWindowManager.aidl \
152 core/java/android/view/IWindowSession.aidl \
Alex Gruenstein361ec772009-09-15 11:19:58 -0700153 core/java/android/speech/IRecognitionListener.aidl \
154 core/java/android/speech/IRecognitionService.aidl \
Bjorn Bringert50e657b2011-03-08 16:00:40 +0000155 core/java/android/speech/tts/ITextToSpeechCallback.aidl \
156 core/java/android/speech/tts/ITextToSpeechService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 core/java/com/android/internal/app/IBatteryStats.aidl \
158 core/java/com/android/internal/app/IUsageStats.aidl \
Suchi Amalapurapuc028be42010-01-25 12:19:12 -0800159 core/java/com/android/internal/app/IMediaContainerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700160 core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
161 core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
Christopher Tate487529a2009-04-29 14:03:25 -0700162 core/java/com/android/internal/backup/IBackupTransport.aidl \
Jim Miller6edf2632011-09-05 16:03:14 -0700163 core/java/com/android/internal/policy/IFaceLockCallback.aidl \
164 core/java/com/android/internal/policy/IFaceLockInterface.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800165 core/java/com/android/internal/os/IDropBoxManagerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700166 core/java/com/android/internal/os/IResultReceiver.aidl \
Joe Onorato0cbda992010-05-02 16:28:15 -0700167 core/java/com/android/internal/statusbar/IStatusBar.aidl \
168 core/java/com/android/internal/statusbar/IStatusBarService.aidl \
satok988323c2011-06-22 16:38:13 +0900169 core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
170 core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
171 core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
172 core/java/com/android/internal/textservice/ITextServicesManager.aidl \
173 core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 core/java/com/android/internal/view/IInputContext.aidl \
175 core/java/com/android/internal/view/IInputContextCallback.aidl \
176 core/java/com/android/internal/view/IInputMethod.aidl \
177 core/java/com/android/internal/view/IInputMethodCallback.aidl \
178 core/java/com/android/internal/view/IInputMethodClient.aidl \
179 core/java/com/android/internal/view/IInputMethodManager.aidl \
180 core/java/com/android/internal/view/IInputMethodSession.aidl \
Amith Yamasani52c489c2012-03-28 11:42:42 -0700181 core/java/com/android/internal/widget/ILockSettings.aidl \
Winson Chung499cb9f2010-07-16 11:18:17 -0700182 core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
Winson Chung81f39eb2011-01-11 18:05:01 -0800183 core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
Brian Carlstrom93201f52011-06-09 15:05:35 -0700184 keystore/java/android/security/IKeyChainAliasCallback.aidl \
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700185 keystore/java/android/security/IKeyChainService.aidl \
Bai Taoa58a8752010-07-13 15:32:16 +0800186 location/java/android/location/ICountryDetector.aidl \
187 location/java/android/location/ICountryListener.aidl \
Mike Lockwooda55c3212009-04-15 11:10:11 -0400188 location/java/android/location/IGeocodeProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 location/java/android/location/IGpsStatusListener.aidl \
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400190 location/java/android/location/IGpsStatusProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 location/java/android/location/ILocationListener.aidl \
192 location/java/android/location/ILocationManager.aidl \
Mike Lockwoodc1e8aa42009-04-06 10:52:24 -0700193 location/java/android/location/ILocationProvider.aidl \
Danke Xie22d1f9f2009-08-18 18:28:45 -0400194 location/java/android/location/INetInitiatedListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 media/java/android/media/IAudioService.aidl \
Jean-Michel Trivid5176cf2010-01-28 11:56:42 -0800196 media/java/android/media/IAudioFocusDispatcher.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 media/java/android/media/IMediaScannerListener.aidl \
198 media/java/android/media/IMediaScannerService.aidl \
Jean-Michel Trivi4426e422011-08-18 19:16:47 -0700199 media/java/android/media/IRemoteControlClient.aidl \
200 media/java/android/media/IRemoteControlDisplay.aidl \
Jeff Sharkey098d5802012-04-26 17:30:34 -0700201 media/java/android/media/IRingtonePlayer.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
203 telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
204 telephony/java/com/android/internal/telephony/ITelephony.aidl \
205 telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
Wink Saville04e71b32009-04-02 11:00:54 -0700206 telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \
207 telephony/java/com/android/internal/telephony/ISms.aidl \
noda7640caa2010-08-20 08:10:00 +0900208 telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
John Wange91bc682009-03-27 18:24:06 -0700209 wifi/java/android/net/wifi/IWifiManager.aidl \
repo sync55bc5f32011-06-24 14:23:07 -0700210 wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \
Raphael9207b1e2009-06-08 21:57:16 -0700211 telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
Chung-yih Wang2d942312010-08-05 12:17:37 +0800212 voip/java/android/net/sip/ISipSession.aidl \
213 voip/java/android/net/sip/ISipSessionListener.aidl \
214 voip/java/android/net/sip/ISipService.aidl
215#
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216
Doug Zongker45e6dbf2009-12-08 12:47:12 -0800217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
219LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
220
221LOCAL_INTERMEDIATE_SOURCES := \
Joe Onorato80a60ba2010-07-14 19:58:30 -0700222 $(framework_res_source_path)/android/R.java \
223 $(framework_res_source_path)/android/Manifest.java \
224 $(framework_res_source_path)/com/android/internal/R.java
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225
226LOCAL_NO_STANDARD_LIBRARIES := true
Brian Carlstrom570bb562010-06-30 00:54:29 -0700227LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228
229LOCAL_MODULE := framework
230LOCAL_MODULE_CLASS := JAVA_LIBRARIES
231
Guang Zhuac075192010-03-16 19:08:54 -0700232LOCAL_NO_EMMA_INSTRUMENT := true
233LOCAL_NO_EMMA_COMPILE := true
234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235# List of classes and interfaces which should be loaded by the Zygote.
236LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
237
238#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
239
240LOCAL_DX_FLAGS := --core-library
241
242include $(BUILD_JAVA_LIBRARY)
243
244# Make sure that R.java and Manifest.java are built before we build
245# the source for this library.
246framework_res_R_stamp := \
247 $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
248$(full_classes_compiled_jar): $(framework_res_R_stamp)
249
250# Make sure that framework-res is installed when framework is.
251$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk
252
Ying Wangb1f57722011-09-15 16:16:45 -0700253framework_built := $(call java-lib-deps,framework)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254
255# AIDL files to be preprocessed and included in the SDK,
256# relative to the root of the build tree.
257# ============================================================
258aidl_files := \
Fred Quintana60307342009-03-24 22:48:12 -0700259 frameworks/base/core/java/android/accounts/IAccountManager.aidl \
260 frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
261 frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
262 frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 frameworks/base/core/java/android/app/Notification.aidl \
264 frameworks/base/core/java/android/app/PendingIntent.aidl \
Nick Pelly459ba862009-11-04 17:23:55 -0800265 frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
Jaikumar Ganesh2ea1e852011-04-01 16:33:09 -0700266 frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 frameworks/base/core/java/android/content/ComponentName.aidl \
268 frameworks/base/core/java/android/content/Intent.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700269 frameworks/base/core/java/android/content/IntentSender.aidl \
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800270 frameworks/base/core/java/android/content/PeriodicSync.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 frameworks/base/core/java/android/content/SyncStats.aidl \
272 frameworks/base/core/java/android/content/res/Configuration.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700273 frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 frameworks/base/core/java/android/net/Uri.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700275 frameworks/base/core/java/android/nfc/NdefMessage.aidl \
276 frameworks/base/core/java/android/nfc/NdefRecord.aidl \
277 frameworks/base/core/java/android/nfc/Tag.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 frameworks/base/core/java/android/os/Bundle.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800279 frameworks/base/core/java/android/os/DropBoxManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
Nick Pellyaef439e2009-09-28 12:33:17 -0700281 frameworks/base/core/java/android/os/ParcelUuid.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 frameworks/base/core/java/android/view/KeyEvent.aidl \
283 frameworks/base/core/java/android/view/MotionEvent.aidl \
284 frameworks/base/core/java/android/view/Surface.aidl \
285 frameworks/base/core/java/android/view/WindowManager.aidl \
286 frameworks/base/core/java/android/widget/RemoteViews.aidl \
satok988323c2011-06-22 16:38:13 +0900287 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
288 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
289 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
290 frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \
291 frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
293 frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
294 frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \
295 frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
296 frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
297 frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
298 frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
299 frameworks/base/graphics/java/android/graphics/Rect.aidl \
300 frameworks/base/graphics/java/android/graphics/Region.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 frameworks/base/location/java/android/location/Criteria.aidl \
302 frameworks/base/location/java/android/location/Location.aidl \
303 frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
304 frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
Raphaeld8b51a22009-06-08 22:05:22 -0700305 frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306
307gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
308$(gen): PRIVATE_SRC_FILES := $(aidl_files)
309ALL_SDK_FILES += $(gen)
310$(gen): $(aidl_files) | $(AIDL)
311 @echo Aidl Preprocess: $@
312 $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
313
314# the documentation
315# ============================================================
316
317# TODO: deal with com/google/android/googleapps
318packages_to_document := \
319 android \
320 javax/microedition/khronos
321
322# Search through the base framework dirs for these packages.
323# The result will be relative to frameworks/base.
324fwbase_dirs_to_document := \
Brett Chabote70f61b2010-02-19 10:49:27 -0800325 test-runner/src \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 $(patsubst $(LOCAL_PATH)/%,%, \
327 $(wildcard \
328 $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
329 $(addprefix $(dir)/, $(packages_to_document)) \
330 ) \
331 ) \
332 )
333
Brian Carlstromcf9a0132011-01-05 17:52:36 -0800334# include definition of libcore_to_document
Brett Chabot571db322012-04-16 10:13:59 -0700335include libcore/Docs.mk
336
337# include definition of junit_to_document
338include external/junit/Common.mk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339
340non_base_dirs := \
Dirk Balfanze599a9d2010-02-01 17:47:48 -0800341 ../../external/apache-http/src/org/apache/http
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342
343# These are relative to frameworks/base
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800344dirs_to_check_apis := \
345 $(fwbase_dirs_to_document) \
Brian Carlstroma9602db2011-03-24 14:14:28 -0700346 $(non_base_dirs)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800348# These are relative to frameworks/base
349# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
350dirs_to_document := \
351 $(dirs_to_check_apis) \
352 $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS))
353
354# These are relative to frameworks/base
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355html_dirs := \
356 $(FRAMEWORKS_BASE_SUBDIRS) \
357 $(non_base_dirs)
358
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800359# Common sources for doc check and api check
360common_src_files := \
361 $(call find-other-html-files, $(html_dirs)) \
Brett Chabot571db322012-04-16 10:13:59 -0700362 $(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore)) \
363 $(addprefix ../../external/junit/, $(call junit_to_document, $(LOCAL_PATH)/../../external/junit))
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365# These are relative to frameworks/base
366framework_docs_LOCAL_SRC_FILES := \
367 $(call find-other-java-files, $(dirs_to_document)) \
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800368 $(common_src_files)
369
370# These are relative to frameworks/base
371framework_docs_LOCAL_API_CHECK_SRC_FILES := \
372 $(call find-other-java-files, $(dirs_to_check_apis)) \
373 $(common_src_files)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374
Joe Onorato626db912010-05-17 18:21:44 -0700375# This is used by ide.mk as the list of source files that are
376# always included.
377INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
378
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
380 $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
381
382framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
Joe Onorato80a60ba2010-07-14 19:58:30 -0700383 $(framework_res_source_path)/android/R.java \
384 $(framework_res_source_path)/android/Manifest.java \
385 $(framework_res_source_path)/com/android/internal/R.java
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386
387framework_docs_LOCAL_JAVA_LIBRARIES := \
Brian Carlstrom570bb562010-06-30 00:54:29 -0700388 bouncycastle \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 core \
390 ext \
Ying Wang6f95f462009-12-10 17:08:14 -0800391 framework \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392
393framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Joe Onorato3fec2bf2010-08-27 15:05:39 -0400394framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
Scott Main6dceb762009-07-31 13:03:36 -0700395# The since flag (-since N.xml API_LEVEL) is used to add API Level information
396# to the reference documentation. Must be in order of oldest to newest.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397framework_docs_LOCAL_DROIDDOC_OPTIONS := \
Joe Onoratod20e5d02010-09-16 11:56:03 -0400398 -knowntags ./frameworks/base/docs/knowntags.txt \
Scott Main6dceb762009-07-31 13:03:36 -0700399 -since ./frameworks/base/api/1.xml 1 \
400 -since ./frameworks/base/api/2.xml 2 \
401 -since ./frameworks/base/api/3.xml 3 \
Scott Mainb3855082009-08-24 14:45:00 -0700402 -since ./frameworks/base/api/4.xml 4 \
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700403 -since ./frameworks/base/api/5.xml 5 \
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800404 -since ./frameworks/base/api/6.xml 6 \
Scott Mainf0cdfa92009-12-16 21:41:10 -0800405 -since ./frameworks/base/api/7.xml 7 \
Scott Mainc4c696a2010-04-19 12:00:15 -0700406 -since ./frameworks/base/api/8.xml 8 \
Scott Maine9ac4e22010-10-18 18:41:52 -0700407 -since ./frameworks/base/api/9.xml 9 \
Scott Mainba3dd322011-01-26 17:40:35 -0800408 -since ./frameworks/base/api/10.xml 10 \
Scott Main62e97012011-02-07 16:35:46 -0800409 -since ./frameworks/base/api/11.xml 11 \
Scott Maind3b62c92011-03-29 16:25:16 -0700410 -since ./frameworks/base/api/12.xml 12 \
Scott Main04295262011-06-21 10:14:44 -0700411 -since ./frameworks/base/api/13.xml 13 \
Scott Mainabb06262011-09-21 18:09:25 -0700412 -since ./frameworks/base/api/14.txt 14 \
Dirk Dougherty9a6b4242011-12-12 13:49:31 -0800413 -since ./frameworks/base/api/15.txt 15 \
Joe Onorato0ba4ac72010-09-16 15:42:20 -0400414 -werror -hide 113 \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 -overview $(LOCAL_PATH)/core/java/overview.html
416
Ying Wang65ee22a2011-05-17 13:12:42 -0700417framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400418
419framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
420 frameworks/base/docs/knowntags.txt
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422sample_dir := development/samples
423
Dirk Doughertyd323b4c2010-02-08 10:53:12 -0800424# the list here should match the list of samples included in the sdk samples package
425# (see development/build/sdk.atree)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426web_docs_sample_code_flags := \
427 -hdf android.hasSamples 1 \
Dirk Dougherty47ccfcb2010-11-24 16:17:52 -0800428 -samplecode $(sample_dir)/AccelerometerPlay \
429 resources/samples/AccelerometerPlay "Accelerometer Play" \
Roman Nurikf4b2ba12011-09-30 15:48:34 -0700430 -samplecode $(sample_dir)/ActionBarCompat \
431 resources/samples/ActionBarCompat "Action Bar Compatibility" \
Scott Main49eb5192011-10-14 01:24:57 -0700432 -samplecode $(sample_dir)/AndroidBeamDemo \
Scott Main3087b942011-10-14 14:29:14 -0700433 resources/samples/AndroidBeamDemo "Android Beam Demo" \
Dianne Hackborn2f048832011-06-16 13:31:57 -0700434 -samplecode $(sample_dir)/ApiDemos \
Robert Ly3f9b6442011-01-19 18:14:50 -0800435 resources/samples/ApiDemos "API Demos" \
Dianne Hackborn2f048832011-06-16 13:31:57 -0700436 -samplecode $(sample_dir)/Support4Demos \
437 resources/samples/Support4Demos "API 4+ Support Demos" \
438 -samplecode $(sample_dir)/Support13Demos \
439 resources/samples/Support13Demos "API 13+ Support Demos" \
Christopher Tatee779bdc2010-04-07 11:15:45 -0700440 -samplecode $(sample_dir)/BackupRestore \
441 resources/samples/BackupRestore "Backup and Restore" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800442 -samplecode $(sample_dir)/BluetoothChat \
443 resources/samples/BluetoothChat "Bluetooth Chat" \
Fred Chung6cf8f732011-11-16 15:15:30 -0800444 -samplecode $(sample_dir)/BluetoothHDP \
445 resources/samples/BluetoothHDP "Bluetooth HDP Demo" \
Trevor Johns2187e2402010-01-07 16:26:39 -0800446 -samplecode $(sample_dir)/BusinessCard \
447 resources/samples/BusinessCard "Business Card" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800448 -samplecode $(sample_dir)/ContactManager \
449 resources/samples/ContactManager "Contact Manager" \
Roman Nurikf4b2ba12011-09-30 15:48:34 -0700450 -samplecode $(sample_dir)/CubeLiveWallpaper \
451 resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
Scott Mainb3855082009-08-24 14:45:00 -0700452 -samplecode $(sample_dir)/Home \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800453 resources/samples/Home "Home" \
Roman Nurikf4b2ba12011-09-30 15:48:34 -0700454 -samplecode $(sample_dir)/HoneycombGallery \
455 resources/samples/HoneycombGallery "Honeycomb Gallery" \
Scott Mainb3855082009-08-24 14:45:00 -0700456 -samplecode $(sample_dir)/JetBoy \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800457 resources/samples/JetBoy "JetBoy" \
Tony Chanc95a74d2012-03-29 01:33:08 +0800458 -samplecode $(sample_dir)/KeyChainDemo \
459 resources/samples/KeyChainDemo "KeyChain Demo" \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 -samplecode $(sample_dir)/LunarLander \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800461 resources/samples/LunarLander "Lunar Lander" \
Scott Main3d672e12011-12-15 10:44:11 -0800462 -samplecode $(sample_dir)/training/ads-and-ux \
463 resources/samples/training/ads-and-ux "Mobile Advertisement Integration" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800464 -samplecode $(sample_dir)/MultiResolution \
465 resources/samples/MultiResolution "Multiple Resolutions" \
Scott Main801fda52011-12-09 17:27:21 -0800466 -samplecode $(sample_dir)/training/multiscreen/newsreader \
467 resources/samples/newsreader "News Reader" \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 -samplecode $(sample_dir)/NotePad \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800469 resources/samples/NotePad "Note Pad" \
satok44619d32011-10-19 22:46:18 +0900470 -samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \
Scott Main2323e9b2011-10-28 15:55:39 -0700471 resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \
satok182e4ae2011-10-27 19:57:34 +0900472 -samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \
Scott Main2323e9b2011-10-28 15:55:39 -0700473 resources/samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \
Dianne Hackbornfef42db2010-06-04 13:38:43 -0700474 -samplecode $(sample_dir)/SampleSyncAdapter \
475 resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
Bruno Oliveira9e67587d2011-06-07 01:23:02 -0400476 -samplecode $(sample_dir)/RandomMusicPlayer \
477 resources/samples/RandomMusicPlayer "Random Music Player" \
Robert Ly44b362c2011-02-28 15:53:15 -0800478 -samplecode $(sample_dir)/RenderScript \
479 resources/samples/RenderScript "RenderScript" \
Scott Main689d16b2009-08-29 13:17:53 -0700480 -samplecode $(sample_dir)/SearchableDictionary \
Scott Mainbf1d0b92010-05-07 15:08:36 -0700481 resources/samples/SearchableDictionary "Searchable Dictionary v2" \
Alexander Lucasa11c9e12010-11-02 22:26:11 -0700482 -samplecode $(sample_dir)/SipDemo \
483 resources/samples/SipDemo "SIP Demo" \
Scott Mainb3855082009-08-24 14:45:00 -0700484 -samplecode $(sample_dir)/Snake \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800485 resources/samples/Snake "Snake" \
Scott Mainb3855082009-08-24 14:45:00 -0700486 -samplecode $(sample_dir)/SoftKeyboard \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800487 resources/samples/SoftKeyboard "Soft Keyboard" \
Joe Maline52c4a72010-04-14 14:40:59 -0700488 -samplecode $(sample_dir)/Spinner \
489 resources/samples/Spinner "Spinner" \
490 -samplecode $(sample_dir)/SpinnerTest \
491 resources/samples/SpinnerTest "SpinnerTest" \
Adam Cohenfca67c52011-02-10 18:57:45 -0800492 -samplecode $(sample_dir)/StackWidget \
Scott Maind873e662011-02-15 10:58:34 -0800493 resources/samples/StackWidget "StackView Widget" \
Dirk Doughertyb32c2402010-05-08 21:22:11 -0700494 -samplecode $(sample_dir)/TicTacToeLib \
495 resources/samples/TicTacToeLib "TicTacToeLib" \
496 -samplecode $(sample_dir)/TicTacToeMain \
497 resources/samples/TicTacToeMain "TicTacToeMain" \
Fred Chung8e076fe2011-11-28 16:44:13 -0800498 -samplecode $(sample_dir)/ToyVpn \
499 resources/samples/ToyVpn "Toy VPN Client" \
Robert Ly8cdb2e22011-05-02 17:49:05 -0700500 -samplecode $(sample_dir)/USB \
501 resources/samples/USB "USB" \
Winson Chung06d2fa72011-02-10 19:11:33 -0800502 -samplecode $(sample_dir)/WeatherListWidget \
Scott Maind873e662011-02-15 10:58:34 -0800503 resources/samples/WeatherListWidget "Weather List Widget" \
Anirudh Dewani5d0dbea2011-10-06 08:03:45 +0530504 -samplecode $(sample_dir)/WiFiDirectDemo \
505 resources/samples/WiFiDirectDemo "Wi-Fi Direct Demo" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800506 -samplecode $(sample_dir)/Wiktionary \
507 resources/samples/Wiktionary "Wiktionary" \
508 -samplecode $(sample_dir)/WiktionarySimple \
Mike LeBeau9c57aca2010-02-12 14:09:55 -0800509 resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
510 -samplecode $(sample_dir)/VoiceRecognitionService \
Gilles Debunne3eb9b662010-06-23 16:53:35 -0700511 resources/samples/VoiceRecognitionService "Voice Recognition Service" \
Debashish Chatterjeeacd6f5f2011-05-19 13:21:48 +0100512 -samplecode $(sample_dir)/VoicemailProviderDemo \
513 resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \
Gilles Debunne3eb9b662010-06-23 16:53:35 -0700514 -samplecode $(sample_dir)/XmlAdapters \
Narayan Kamathaf1ad3c2011-06-23 10:43:27 +0100515 resources/samples/XmlAdapters "XML Adapters" \
516 -samplecode $(sample_dir)/TtsEngine \
Scott Mainaed4ced2011-12-15 10:25:41 -0800517 resources/samples/TtsEngine "Text To Speech Engine" \
518 -samplecode $(sample_dir)/training/device-management-policy \
519 resources/samples/training/device-management-policy "Device Management Policy"
520
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700522## SDK version identifiers used in the published docs
523 # major[.minor] version for current SDK. (full releases only)
Scott Mainabb06262011-09-21 18:09:25 -0700524framework_docs_SDK_VERSION:=4.0
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700525 # release version (ie "Release x") (full releases only)
Scott Main62e97012011-02-07 16:35:46 -0800526framework_docs_SDK_REL_ID:=1
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700527
528framework_docs_LOCAL_DROIDDOC_OPTIONS += \
529 -hdf sdk.version $(framework_docs_SDK_VERSION) \
Scott Mainb402f112010-11-29 14:28:13 -0800530 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
Scott Main62e97012011-02-07 16:35:46 -0800531 -hdf sdk.preview 0 \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800532
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400533# ==== the api stubs and current.xml ===========================
534include $(CLEAR_VARS)
535
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800536LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400537LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
538LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
539LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
540LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
541LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
542LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400543LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400544
545LOCAL_MODULE := api-stubs
546
547LOCAL_DROIDDOC_OPTIONS:=\
548 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
549 -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
Joe Onorato5e88ac72011-03-09 13:34:39 -0800550 -api $(INTERNAL_PLATFORM_API_FILE) \
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400551 -nodocs
552
553LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400554
Joe Onorato7e3cf122010-09-01 10:41:35 -0700555LOCAL_UNINSTALLABLE_MODULE := true
556
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400557include $(BUILD_DROIDDOC)
558
Ying Wang68064572010-05-07 15:00:10 -0700559# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
560$(full_target): $(framework_built) $(gen)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400561$(INTERNAL_PLATFORM_API_FILE): $(full_target)
562$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
563
Joe Onorato4314e2e2010-08-27 17:13:22 -0400564# ==== check javadoc comments but don't generate docs ========
565include $(CLEAR_VARS)
566
567LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
568LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
569LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
570LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
571LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
572LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
573LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400574LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onorato4314e2e2010-08-27 17:13:22 -0400575
576LOCAL_MODULE := doc-comment-check
577
578LOCAL_DROIDDOC_OPTIONS:=\
579 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Joe Onorato4314e2e2010-08-27 17:13:22 -0400580 -parsecomments
581
582LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onorato4314e2e2010-08-27 17:13:22 -0400583
Joe Onorato7e3cf122010-09-01 10:41:35 -0700584LOCAL_UNINSTALLABLE_MODULE := true
585
Joe Onorato4314e2e2010-08-27 17:13:22 -0400586include $(BUILD_DROIDDOC)
587
588# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
589$(full_target): $(framework_built) $(gen)
590
591droidcore: doc-comment-check-docs
592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593# ==== static html in the sdk ==================================
594include $(CLEAR_VARS)
595
596LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
597LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
598LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
599LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
600LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
601LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
602LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400603LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604
605LOCAL_MODULE := offline-sdk
606
607LOCAL_DROIDDOC_OPTIONS:=\
608 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Scott Main820a4e72009-11-19 20:19:49 -0800609 $(web_docs_sample_code_flags) \
Scott Main02169462009-11-20 10:44:21 -0800610 -offlinemode \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 -title "Android SDK" \
612 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
613 -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 -sdkvalues $(OUT_DOCS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700615 -hdf android.whichdoc offline
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700616
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617
618LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619
620include $(BUILD_DROIDDOC)
621
622static_doc_index_redirect := $(out_dir)/index.html
623$(static_doc_index_redirect): \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700624 $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800625 $(hide) mkdir -p $(dir $@)
626 $(hide) $(ACP) $< $@
627
628$(full_target): $(static_doc_index_redirect)
629$(full_target): $(framework_built)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630
631# ==== docs for the web (on the google app engine server) =======================
632include $(CLEAR_VARS)
633
634LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
635LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
636LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
637LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
638LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
639LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
640LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
641LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400642LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643
644LOCAL_MODULE := online-sdk
645
646LOCAL_DROIDDOC_OPTIONS:= \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700647 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
648 $(web_docs_sample_code_flags) \
649 -toroot / \
Dirk Dougherty13d30dc32009-07-07 17:37:13 -0700650 -hdf android.whichdoc online \
651 -hdf template.showLanguageMenu true
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652
653LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654
655include $(BUILD_DROIDDOC)
656
Bill Napiere7c91782010-08-25 18:13:02 -0700657# explicitly specify that online-sdk depends on framework-res and any generated docs
Mike Lockwood089a3852010-08-25 08:21:15 -0400658$(full_target): framework-res-package-target
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800659
660# ==== docs that have all of the stuff that's @hidden =======================
661include $(CLEAR_VARS)
662
663LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
664LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
665LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
666LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
667LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
668LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
Ying Wang65ee22a2011-05-17 13:12:42 -0700669LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400670LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671
672LOCAL_MODULE := hidden
673LOCAL_DROIDDOC_OPTIONS:=\
674 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700675 -title "Android SDK - Including hidden APIs."
676# -hidden
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677
678LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679
680include $(BUILD_DROIDDOC)
681
682# Build ext.jar
683# ============================================================
684
David Deephanphongs62f2ada2010-10-19 14:54:05 -0700685# NOTICE notes for non-obvious sections
686# apache-http - covered by the Apache Commons section.
687
688
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689ext_dirs := \
Chung-yih Wang2d942312010-08-05 12:17:37 +0800690 ../../external/nist-sip/java \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 ../../external/apache-http/src \
Bai Taoef4fd8e2010-06-07 10:25:53 +0800692 ../../external/tagsoup/src \
693 ../../external/libphonenumber/java/src
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694
695ext_src_files := $(call all-java-files-under,$(ext_dirs))
696
Bai Taoef4fd8e2010-06-07 10:25:53 +0800697ext_res_dirs := \
698 ../../external/libphonenumber/java/src
699
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700# ==== the library =========================================
701include $(CLEAR_VARS)
702
703LOCAL_SRC_FILES := $(ext_src_files)
704
705LOCAL_NO_STANDARD_LIBRARIES := true
706LOCAL_JAVA_LIBRARIES := core
Bai Taoef4fd8e2010-06-07 10:25:53 +0800707LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
Jesse Wilsona1459562010-09-16 17:50:43 -0700708LOCAL_MODULE_TAGS := optional
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800709LOCAL_MODULE := ext
710
Guang Zhuac075192010-03-16 19:08:54 -0700711LOCAL_NO_EMMA_INSTRUMENT := true
712LOCAL_NO_EMMA_COMPILE := true
713
Brian Carlstrom08065b92011-04-01 15:49:41 -0700714LOCAL_DX_FLAGS := --core-library
715
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716include $(BUILD_JAVA_LIBRARY)
717
718
719# Include subdirectory makefiles
720# ============================================================
721
722# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
723# team really wants is to build the stuff defined by this makefile.
724ifeq (,$(ONE_SHOT_MAKEFILE))
725include $(call first-makefiles-under,$(LOCAL_PATH))
726endif