blob: 21307eba1776c8eb955a049d5af36e1ed17ae76f [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 \
39 core/java/android/webkit/EventLogTags.logtags \
40 telephony/java/com/android/internal/telephony/EventLogTags.logtags \
Brad Fitzpatricka63730d2010-02-07 22:25:34 -080041
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042# 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.
46LOCAL_SRC_FILES := $(filter-out \
47 org/mobilecontrol/% \
48 ,$(LOCAL_SRC_FILES))
49
Dave Borta833cbb2009-04-22 17:33:12 -070050# Include a different set of source files when building a debug build.
51# TODO: Maybe build these into a separate .jar and put it on the classpath
52# in front of framework.jar.
53# NOTE: Do not use this as an example; this is a very special situation.
54# Do not modify LOCAL_SRC_FILES based on any variable other
55# than TARGET_BUILD_TYPE, otherwise builds can become inconsistent.
56ifeq ($(TARGET_BUILD_TYPE),debug)
57 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug)
58else
59 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug)
60endif
61
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062## READ ME: ########################################################
63##
Mike Lockwoodc1e8aa42009-04-06 10:52:24 -070064## When updating this list of aidl files, consider if that aidl is
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065## part of the SDK API. If it is, also add it to the list below that
66## is preprocessed and distributed with the SDK. This list should
67## not contain any aidl files for parcelables, but the one below should
68## if you intend for 3rd parties to be able to send those objects
69## across process boundaries.
70##
71## READ ME: ########################################################
72LOCAL_SRC_FILES += \
svetoslavganov75986cf2009-05-14 22:28:01 -070073 core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
Dianne Hackborndace2302009-07-14 12:51:00 -070074 core/java/android/accessibilityservice/IEventListener.aidl \
Fred Quintana60307342009-03-24 22:48:12 -070075 core/java/android/accounts/IAccountManager.aidl \
76 core/java/android/accounts/IAccountManagerResponse.aidl \
77 core/java/android/accounts/IAccountAuthenticator.aidl \
78 core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070079 core/java/android/app/IActivityController.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 core/java/android/app/IActivityPendingResult.aidl \
81 core/java/android/app/IActivityWatcher.aidl \
82 core/java/android/app/IAlarmManager.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070083 core/java/android/app/IBackupAgent.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 core/java/android/app/IInstrumentationWatcher.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 core/java/android/app/INotificationManager.aidl \
86 core/java/android/app/ISearchManager.aidl \
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +010087 core/java/android/app/ISearchManagerCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 core/java/android/app/IServiceConnection.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 core/java/android/app/IThumbnailReceiver.aidl \
90 core/java/android/app/ITransientNotification.aidl \
Tobias Haamel27b28b32010-02-09 23:09:17 +010091 core/java/android/app/IUiModeManager.aidl \
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070092 core/java/android/app/IWallpaperManager.aidl \
93 core/java/android/app/IWallpaperManagerCallback.aidl \
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080094 core/java/android/app/admin/IDevicePolicyManager.aidl \
Christopher Tate45281862010-03-05 15:46:30 -080095 core/java/android/app/backup/IBackupManager.aidl \
96 core/java/android/app/backup/IRestoreObserver.aidl \
97 core/java/android/app/backup/IRestoreSession.aidl \
Nick Pellybd022f42009-08-14 18:33:38 -070098 core/java/android/bluetooth/IBluetooth.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 core/java/android/bluetooth/IBluetoothA2dp.aidl \
Nick Pelly16fb88a2009-10-07 07:44:03 +0200100 core/java/android/bluetooth/IBluetoothCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 core/java/android/bluetooth/IBluetoothHeadset.aidl \
Jiafa Liu3f416732009-07-02 16:36:02 +0800102 core/java/android/bluetooth/IBluetoothPbap.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -0700103 core/java/android/content/IClipboard.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700104 core/java/android/content/IContentService.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700105 core/java/android/content/IIntentReceiver.aidl \
106 core/java/android/content/IIntentSender.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -0700107 core/java/android/content/IOnPrimaryClipChangedListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 core/java/android/content/ISyncAdapter.aidl \
109 core/java/android/content/ISyncContext.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700110 core/java/android/content/ISyncStatusObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 core/java/android/content/pm/IPackageDataObserver.aidl \
112 core/java/android/content/pm/IPackageDeleteObserver.aidl \
113 core/java/android/content/pm/IPackageInstallObserver.aidl \
114 core/java/android/content/pm/IPackageManager.aidl \
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -0800115 core/java/android/content/pm/IPackageMoveObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 core/java/android/content/pm/IPackageStatsObserver.aidl \
117 core/java/android/database/IContentObserver.aidl \
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800118 core/java/android/hardware/usb/IUsbManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 core/java/android/net/IConnectivityManager.aidl \
San Mehat4d02d002010-01-22 16:07:46 -0800120 core/java/android/net/INetworkManagementEventObserver.aidl \
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400121 core/java/android/net/IThrottleManager.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700122 core/java/android/nfc/ILlcpConnectionlessSocket.aidl \
123 core/java/android/nfc/ILlcpServiceSocket.aidl \
124 core/java/android/nfc/ILlcpSocket.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700125 core/java/android/nfc/INfcAdapter.aidl \
126 core/java/android/nfc/INfcTag.aidl \
127 core/java/android/nfc/IP2pInitiator.aidl \
128 core/java/android/nfc/IP2pTarget.aidl \
Daniel Tomas90245642010-11-17 10:07:52 +0100129 core/java/android/nfc/INfcSecureElement.aidl \
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400130 core/java/android/os/IHardwareService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 core/java/android/os/IMessenger.aidl \
San Mehat873f2142010-01-14 10:25:07 -0800132 core/java/android/os/INetworkManagementService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 core/java/android/os/INetStatService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 core/java/android/os/IPermissionController.aidl \
135 core/java/android/os/IPowerManager.aidl \
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800136 core/java/android/os/IRemoteCallback.aidl \
Mike Lockwood3a322132009-11-24 00:30:52 -0500137 core/java/android/os/IVibratorService.aidl \
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700138 core/java/android/service/wallpaper/IWallpaperConnection.aidl \
139 core/java/android/service/wallpaper/IWallpaperEngine.aidl \
Dianne Hackborn8cc6a502009-08-05 21:29:42 -0700140 core/java/android/service/wallpaper/IWallpaperService.aidl \
svetoslavganov75986cf2009-05-14 22:28:01 -0700141 core/java/android/view/accessibility/IAccessibilityManager.aidl \
142 core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 core/java/android/view/IApplicationToken.aidl \
144 core/java/android/view/IOnKeyguardExitResult.aidl \
145 core/java/android/view/IRotationWatcher.aidl \
146 core/java/android/view/IWindow.aidl \
147 core/java/android/view/IWindowManager.aidl \
148 core/java/android/view/IWindowSession.aidl \
Alex Gruenstein361ec772009-09-15 11:19:58 -0700149 core/java/android/speech/IRecognitionListener.aidl \
150 core/java/android/speech/IRecognitionService.aidl \
Charles Chenf85aa5a2009-06-10 10:39:55 -0700151 core/java/android/speech/tts/ITts.aidl \
152 core/java/android/speech/tts/ITtsCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 core/java/com/android/internal/app/IBatteryStats.aidl \
154 core/java/com/android/internal/app/IUsageStats.aidl \
Suchi Amalapurapuc028be42010-01-25 12:19:12 -0800155 core/java/com/android/internal/app/IMediaContainerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700156 core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
157 core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
Christopher Tate487529a2009-04-29 14:03:25 -0700158 core/java/com/android/internal/backup/IBackupTransport.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800159 core/java/com/android/internal/os/IDropBoxManagerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700160 core/java/com/android/internal/os/IResultReceiver.aidl \
Joe Onorato0cbda992010-05-02 16:28:15 -0700161 core/java/com/android/internal/statusbar/IStatusBar.aidl \
162 core/java/com/android/internal/statusbar/IStatusBarService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 core/java/com/android/internal/view/IInputContext.aidl \
164 core/java/com/android/internal/view/IInputContextCallback.aidl \
165 core/java/com/android/internal/view/IInputMethod.aidl \
166 core/java/com/android/internal/view/IInputMethodCallback.aidl \
167 core/java/com/android/internal/view/IInputMethodClient.aidl \
168 core/java/com/android/internal/view/IInputMethodManager.aidl \
169 core/java/com/android/internal/view/IInputMethodSession.aidl \
Winson Chung499cb9f2010-07-16 11:18:17 -0700170 core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
Winson Chung81f39eb2011-01-11 18:05:01 -0800171 core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
Bai Taoa58a8752010-07-13 15:32:16 +0800172 location/java/android/location/ICountryDetector.aidl \
173 location/java/android/location/ICountryListener.aidl \
Mike Lockwooda55c3212009-04-15 11:10:11 -0400174 location/java/android/location/IGeocodeProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 location/java/android/location/IGpsStatusListener.aidl \
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400176 location/java/android/location/IGpsStatusProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 location/java/android/location/ILocationListener.aidl \
178 location/java/android/location/ILocationManager.aidl \
Mike Lockwoodc1e8aa42009-04-06 10:52:24 -0700179 location/java/android/location/ILocationProvider.aidl \
Danke Xie22d1f9f2009-08-18 18:28:45 -0400180 location/java/android/location/INetInitiatedListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 media/java/android/media/IAudioService.aidl \
Jean-Michel Trivid5176cf2010-01-28 11:56:42 -0800182 media/java/android/media/IAudioFocusDispatcher.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 media/java/android/media/IMediaScannerListener.aidl \
184 media/java/android/media/IMediaScannerService.aidl \
185 telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
186 telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
187 telephony/java/com/android/internal/telephony/ITelephony.aidl \
188 telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
Wink Saville04e71b32009-04-02 11:00:54 -0700189 telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \
190 telephony/java/com/android/internal/telephony/ISms.aidl \
noda7640caa2010-08-20 08:10:00 +0900191 telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
John Wange91bc682009-03-27 18:24:06 -0700192 wifi/java/android/net/wifi/IWifiManager.aidl \
Raphael9207b1e2009-06-08 21:57:16 -0700193 telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
Hung-ying Tyan55567ef2009-06-03 23:56:34 +0800194 vpn/java/android/net/vpn/IVpnService.aidl \
Chung-yih Wang2d942312010-08-05 12:17:37 +0800195 voip/java/android/net/sip/ISipSession.aidl \
196 voip/java/android/net/sip/ISipSessionListener.aidl \
197 voip/java/android/net/sip/ISipService.aidl
198#
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199
Doug Zongker45e6dbf2009-12-08 12:47:12 -0800200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
202LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
203
204LOCAL_INTERMEDIATE_SOURCES := \
Joe Onorato80a60ba2010-07-14 19:58:30 -0700205 $(framework_res_source_path)/android/R.java \
206 $(framework_res_source_path)/android/Manifest.java \
207 $(framework_res_source_path)/com/android/internal/R.java
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208
209LOCAL_NO_STANDARD_LIBRARIES := true
Brian Carlstrom570bb562010-06-30 00:54:29 -0700210LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211
212LOCAL_MODULE := framework
213LOCAL_MODULE_CLASS := JAVA_LIBRARIES
214
Guang Zhuac075192010-03-16 19:08:54 -0700215LOCAL_NO_EMMA_INSTRUMENT := true
216LOCAL_NO_EMMA_COMPILE := true
217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218# List of classes and interfaces which should be loaded by the Zygote.
219LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
220
221#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
222
223LOCAL_DX_FLAGS := --core-library
224
225include $(BUILD_JAVA_LIBRARY)
226
227# Make sure that R.java and Manifest.java are built before we build
228# the source for this library.
229framework_res_R_stamp := \
230 $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
231$(full_classes_compiled_jar): $(framework_res_R_stamp)
232
233# Make sure that framework-res is installed when framework is.
234$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk
235
236framework_built := $(LOCAL_BUILT_MODULE)
237
238# AIDL files to be preprocessed and included in the SDK,
239# relative to the root of the build tree.
240# ============================================================
241aidl_files := \
Fred Quintana60307342009-03-24 22:48:12 -0700242 frameworks/base/core/java/android/accounts/IAccountManager.aidl \
243 frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
244 frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
245 frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 frameworks/base/core/java/android/app/Notification.aidl \
247 frameworks/base/core/java/android/app/PendingIntent.aidl \
Nick Pelly459ba862009-11-04 17:23:55 -0800248 frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 frameworks/base/core/java/android/content/ComponentName.aidl \
250 frameworks/base/core/java/android/content/Intent.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700251 frameworks/base/core/java/android/content/IntentSender.aidl \
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800252 frameworks/base/core/java/android/content/PeriodicSync.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 frameworks/base/core/java/android/content/SyncStats.aidl \
254 frameworks/base/core/java/android/content/res/Configuration.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700255 frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 frameworks/base/core/java/android/net/Uri.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700257 frameworks/base/core/java/android/nfc/NdefMessage.aidl \
258 frameworks/base/core/java/android/nfc/NdefRecord.aidl \
259 frameworks/base/core/java/android/nfc/Tag.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 frameworks/base/core/java/android/os/Bundle.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800261 frameworks/base/core/java/android/os/DropBoxManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
Nick Pellyaef439e2009-09-28 12:33:17 -0700263 frameworks/base/core/java/android/os/ParcelUuid.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 frameworks/base/core/java/android/view/KeyEvent.aidl \
265 frameworks/base/core/java/android/view/MotionEvent.aidl \
266 frameworks/base/core/java/android/view/Surface.aidl \
267 frameworks/base/core/java/android/view/WindowManager.aidl \
268 frameworks/base/core/java/android/widget/RemoteViews.aidl \
269 frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
270 frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
271 frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \
272 frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
273 frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
274 frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
275 frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
276 frameworks/base/graphics/java/android/graphics/Rect.aidl \
277 frameworks/base/graphics/java/android/graphics/Region.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 frameworks/base/location/java/android/location/Criteria.aidl \
279 frameworks/base/location/java/android/location/Location.aidl \
280 frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
281 frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
Raphaeld8b51a22009-06-08 22:05:22 -0700282 frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
Hung-ying Tyan55567ef2009-06-03 23:56:34 +0800283 frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284
285gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
286$(gen): PRIVATE_SRC_FILES := $(aidl_files)
287ALL_SDK_FILES += $(gen)
288$(gen): $(aidl_files) | $(AIDL)
289 @echo Aidl Preprocess: $@
290 $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
291
292# the documentation
293# ============================================================
294
295# TODO: deal with com/google/android/googleapps
296packages_to_document := \
297 android \
298 javax/microedition/khronos
299
300# Search through the base framework dirs for these packages.
301# The result will be relative to frameworks/base.
302fwbase_dirs_to_document := \
Brett Chabote70f61b2010-02-19 10:49:27 -0800303 test-runner/src \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 $(patsubst $(LOCAL_PATH)/%,%, \
305 $(wildcard \
306 $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
307 $(addprefix $(dir)/, $(packages_to_document)) \
308 ) \
309 ) \
310 )
311
Dave Borta833cbb2009-04-22 17:33:12 -0700312# Pass a special "fake-out" version of some classes to the doc/API tools.
313# ConfigBuildFlags uses this trick to prevent certain fields from appearing
314# as "final" in the official SDK APIs.
315fwbase_dirs_to_document += core/config/sdk
316
Brian Carlstromcf9a0132011-01-05 17:52:36 -0800317# include definition of libcore_to_document
Jean-Baptiste Queru8d817f72010-04-30 10:13:34 -0700318# These are relative to libcore
Brian Carlstromcf9a0132011-01-05 17:52:36 -0800319include $(LOCAL_PATH)/../../libcore/Docs.mk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320
321non_base_dirs := \
Dirk Balfanze599a9d2010-02-01 17:47:48 -0800322 ../../external/apache-http/src/org/apache/http
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323
324# These are relative to frameworks/base
325dirs_to_document := \
326 $(fwbase_dirs_to_document) \
327 $(non_base_dirs) \
Jean-Baptiste Queru8d817f72010-04-30 10:13:34 -0700328 $(addprefix ../../libcore/, $(libcore_to_document))
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329
330html_dirs := \
331 $(FRAMEWORKS_BASE_SUBDIRS) \
332 $(non_base_dirs)
333
334# These are relative to frameworks/base
335framework_docs_LOCAL_SRC_FILES := \
336 $(call find-other-java-files, $(dirs_to_document)) \
337 $(call find-other-html-files, $(html_dirs))
338
Joe Onorato626db912010-05-17 18:21:44 -0700339# This is used by ide.mk as the list of source files that are
340# always included.
341INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
344 $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
345
346framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
Joe Onorato80a60ba2010-07-14 19:58:30 -0700347 $(framework_res_source_path)/android/R.java \
348 $(framework_res_source_path)/android/Manifest.java \
349 $(framework_res_source_path)/com/android/internal/R.java
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350
351framework_docs_LOCAL_JAVA_LIBRARIES := \
Brian Carlstrom570bb562010-06-30 00:54:29 -0700352 bouncycastle \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 core \
354 ext \
Ying Wang6f95f462009-12-10 17:08:14 -0800355 framework \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800356
357framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Joe Onorato3fec2bf2010-08-27 15:05:39 -0400358framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
Scott Main6dceb762009-07-31 13:03:36 -0700359# The since flag (-since N.xml API_LEVEL) is used to add API Level information
360# to the reference documentation. Must be in order of oldest to newest.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361framework_docs_LOCAL_DROIDDOC_OPTIONS := \
Joe Onoratod20e5d02010-09-16 11:56:03 -0400362 -knowntags ./frameworks/base/docs/knowntags.txt \
Scott Main6dceb762009-07-31 13:03:36 -0700363 -since ./frameworks/base/api/1.xml 1 \
364 -since ./frameworks/base/api/2.xml 2 \
365 -since ./frameworks/base/api/3.xml 3 \
Scott Mainb3855082009-08-24 14:45:00 -0700366 -since ./frameworks/base/api/4.xml 4 \
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700367 -since ./frameworks/base/api/5.xml 5 \
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800368 -since ./frameworks/base/api/6.xml 6 \
Scott Mainf0cdfa92009-12-16 21:41:10 -0800369 -since ./frameworks/base/api/7.xml 7 \
Scott Mainc4c696a2010-04-19 12:00:15 -0700370 -since ./frameworks/base/api/8.xml 8 \
Scott Maine9ac4e22010-10-18 18:41:52 -0700371 -since ./frameworks/base/api/9.xml 9 \
Scott Mainba3dd322011-01-26 17:40:35 -0800372 -since ./frameworks/base/api/10.xml 10 \
Scott Main62e97012011-02-07 16:35:46 -0800373 -since ./frameworks/base/api/11.xml 11 \
Scott Maind3b62c92011-03-29 16:25:16 -0700374 -since ./frameworks/base/api/12.xml 12 \
Joe Onorato0ba4ac72010-09-16 15:42:20 -0400375 -werror -hide 113 \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 -overview $(LOCAL_PATH)/core/java/overview.html
377
Joe Onoratod20e5d02010-09-16 11:56:03 -0400378framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework)
379
380framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
381 frameworks/base/docs/knowntags.txt
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383sample_dir := development/samples
384
Dirk Doughertyd323b4c2010-02-08 10:53:12 -0800385# the list here should match the list of samples included in the sdk samples package
386# (see development/build/sdk.atree)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387web_docs_sample_code_flags := \
388 -hdf android.hasSamples 1 \
Trevor Johnse66593b2010-11-24 16:03:21 -0800389 -samplecode $(sample_dir)/AccessibilityService \
390 resources/samples/AccessibilityService "Accessibility Service" \
Dirk Dougherty47ccfcb2010-11-24 16:17:52 -0800391 -samplecode $(sample_dir)/AccelerometerPlay \
392 resources/samples/AccelerometerPlay "Accelerometer Play" \
Dianne Hackborn2f048832011-06-16 13:31:57 -0700393 -samplecode $(sample_dir)/ApiDemos \
Robert Ly3f9b6442011-01-19 18:14:50 -0800394 resources/samples/ApiDemos "API Demos" \
Dianne Hackborn2f048832011-06-16 13:31:57 -0700395 -samplecode $(sample_dir)/Support4Demos \
396 resources/samples/Support4Demos "API 4+ Support Demos" \
397 -samplecode $(sample_dir)/Support13Demos \
398 resources/samples/Support13Demos "API 13+ Support Demos" \
Christopher Tatee779bdc2010-04-07 11:15:45 -0700399 -samplecode $(sample_dir)/BackupRestore \
400 resources/samples/BackupRestore "Backup and Restore" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800401 -samplecode $(sample_dir)/BluetoothChat \
402 resources/samples/BluetoothChat "Bluetooth Chat" \
Trevor Johns2187e2402010-01-07 16:26:39 -0800403 -samplecode $(sample_dir)/BusinessCard \
404 resources/samples/BusinessCard "Business Card" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800405 -samplecode $(sample_dir)/ContactManager \
406 resources/samples/ContactManager "Contact Manager" \
Robert Ly3f9b6442011-01-19 18:14:50 -0800407 -samplecode $(sample_dir)/CubeLiveWallpaper \
408 resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
Scott Mainb3855082009-08-24 14:45:00 -0700409 -samplecode $(sample_dir)/Home \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800410 resources/samples/Home "Home" \
Roman Nurika35f6562011-02-04 14:28:22 -0800411 -samplecode $(sample_dir)/HoneycombGallery \
412 resources/samples/HoneycombGallery "Honeycomb Gallery" \
Scott Mainb3855082009-08-24 14:45:00 -0700413 -samplecode $(sample_dir)/JetBoy \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800414 resources/samples/JetBoy "JetBoy" \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 -samplecode $(sample_dir)/LunarLander \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800416 resources/samples/LunarLander "Lunar Lander" \
417 -samplecode $(sample_dir)/MultiResolution \
418 resources/samples/MultiResolution "Multiple Resolutions" \
Robert Ly3f9b6442011-01-19 18:14:50 -0800419 -samplecode $(sample_dir)/NFCDemo \
420 resources/samples/NFCDemo "NFC Demo" \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 -samplecode $(sample_dir)/NotePad \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800422 resources/samples/NotePad "Note Pad" \
Dianne Hackbornfef42db2010-06-04 13:38:43 -0700423 -samplecode $(sample_dir)/SampleSyncAdapter \
424 resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
Robert Ly44b362c2011-02-28 15:53:15 -0800425 -samplecode $(sample_dir)/RenderScript \
426 resources/samples/RenderScript "RenderScript" \
Scott Main689d16b2009-08-29 13:17:53 -0700427 -samplecode $(sample_dir)/SearchableDictionary \
Scott Mainbf1d0b92010-05-07 15:08:36 -0700428 resources/samples/SearchableDictionary "Searchable Dictionary v2" \
Alexander Lucasa11c9e12010-11-02 22:26:11 -0700429 -samplecode $(sample_dir)/SipDemo \
430 resources/samples/SipDemo "SIP Demo" \
Scott Mainb3855082009-08-24 14:45:00 -0700431 -samplecode $(sample_dir)/Snake \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800432 resources/samples/Snake "Snake" \
Scott Mainb3855082009-08-24 14:45:00 -0700433 -samplecode $(sample_dir)/SoftKeyboard \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800434 resources/samples/SoftKeyboard "Soft Keyboard" \
Joe Maline52c4a72010-04-14 14:40:59 -0700435 -samplecode $(sample_dir)/Spinner \
436 resources/samples/Spinner "Spinner" \
437 -samplecode $(sample_dir)/SpinnerTest \
438 resources/samples/SpinnerTest "SpinnerTest" \
Adam Cohenfca67c52011-02-10 18:57:45 -0800439 -samplecode $(sample_dir)/StackWidget \
Scott Maind873e662011-02-15 10:58:34 -0800440 resources/samples/StackWidget "StackView Widget" \
Dirk Doughertyb32c2402010-05-08 21:22:11 -0700441 -samplecode $(sample_dir)/TicTacToeLib \
442 resources/samples/TicTacToeLib "TicTacToeLib" \
443 -samplecode $(sample_dir)/TicTacToeMain \
444 resources/samples/TicTacToeMain "TicTacToeMain" \
Robert Ly8cdb2e22011-05-02 17:49:05 -0700445 -samplecode $(sample_dir)/USB \
446 resources/samples/USB "USB" \
Winson Chung06d2fa72011-02-10 19:11:33 -0800447 -samplecode $(sample_dir)/WeatherListWidget \
Scott Maind873e662011-02-15 10:58:34 -0800448 resources/samples/WeatherListWidget "Weather List Widget" \
Dirk Dougherty22558d02009-12-10 16:25:06 -0800449 -samplecode $(sample_dir)/Wiktionary \
450 resources/samples/Wiktionary "Wiktionary" \
451 -samplecode $(sample_dir)/WiktionarySimple \
Mike LeBeau9c57aca2010-02-12 14:09:55 -0800452 resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
453 -samplecode $(sample_dir)/VoiceRecognitionService \
Gilles Debunne3eb9b662010-06-23 16:53:35 -0700454 resources/samples/VoiceRecognitionService "Voice Recognition Service" \
455 -samplecode $(sample_dir)/XmlAdapters \
456 resources/samples/XmlAdapters "XML Adapters"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700458## SDK version identifiers used in the published docs
459 # major[.minor] version for current SDK. (full releases only)
Scott Main1c71fff2011-05-05 14:49:47 -0700460framework_docs_SDK_VERSION:=3.1
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700461 # release version (ie "Release x") (full releases only)
Scott Main62e97012011-02-07 16:35:46 -0800462framework_docs_SDK_REL_ID:=1
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700463
464framework_docs_LOCAL_DROIDDOC_OPTIONS += \
465 -hdf sdk.version $(framework_docs_SDK_VERSION) \
Scott Mainb402f112010-11-29 14:28:13 -0800466 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
Scott Main62e97012011-02-07 16:35:46 -0800467 -hdf sdk.preview 0 \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400469# ==== the api stubs and current.xml ===========================
470include $(CLEAR_VARS)
471
472LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
473LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
474LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
475LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
476LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
477LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
478LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400479LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400480
481LOCAL_MODULE := api-stubs
482
483LOCAL_DROIDDOC_OPTIONS:=\
484 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
485 -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
486 -apixml $(INTERNAL_PLATFORM_API_FILE) \
487 -nodocs
488
489LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400490
Joe Onorato7e3cf122010-09-01 10:41:35 -0700491LOCAL_UNINSTALLABLE_MODULE := true
492
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400493include $(BUILD_DROIDDOC)
494
Ying Wang68064572010-05-07 15:00:10 -0700495# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
496$(full_target): $(framework_built) $(gen)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400497$(INTERNAL_PLATFORM_API_FILE): $(full_target)
498$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
499
Joe Onorato4314e2e2010-08-27 17:13:22 -0400500# ==== check javadoc comments but don't generate docs ========
501include $(CLEAR_VARS)
502
503LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
504LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
505LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
506LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
507LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
508LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
509LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400510LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onorato4314e2e2010-08-27 17:13:22 -0400511
512LOCAL_MODULE := doc-comment-check
513
514LOCAL_DROIDDOC_OPTIONS:=\
515 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Joe Onorato4314e2e2010-08-27 17:13:22 -0400516 -parsecomments
517
518LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onorato4314e2e2010-08-27 17:13:22 -0400519
Joe Onorato7e3cf122010-09-01 10:41:35 -0700520LOCAL_UNINSTALLABLE_MODULE := true
521
Joe Onorato4314e2e2010-08-27 17:13:22 -0400522include $(BUILD_DROIDDOC)
523
524# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
525$(full_target): $(framework_built) $(gen)
526
527droidcore: doc-comment-check-docs
528
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800529# ==== static html in the sdk ==================================
530include $(CLEAR_VARS)
531
532LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
533LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
534LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
535LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
536LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
537LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
538LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400539LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540
541LOCAL_MODULE := offline-sdk
542
543LOCAL_DROIDDOC_OPTIONS:=\
544 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Scott Main820a4e72009-11-19 20:19:49 -0800545 $(web_docs_sample_code_flags) \
Scott Main02169462009-11-20 10:44:21 -0800546 -offlinemode \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800547 -title "Android SDK" \
548 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
549 -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800550 -sdkvalues $(OUT_DOCS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700551 -hdf android.whichdoc offline
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700552
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553
554LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555
556include $(BUILD_DROIDDOC)
557
558static_doc_index_redirect := $(out_dir)/index.html
559$(static_doc_index_redirect): \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700560 $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 $(hide) mkdir -p $(dir $@)
562 $(hide) $(ACP) $< $@
563
564$(full_target): $(static_doc_index_redirect)
565$(full_target): $(framework_built)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566
567# ==== docs for the web (on the google app engine server) =======================
568include $(CLEAR_VARS)
569
570LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
571LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
572LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
573LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
574LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
575LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
576LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
577LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400578LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579
580LOCAL_MODULE := online-sdk
581
582LOCAL_DROIDDOC_OPTIONS:= \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700583 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
584 $(web_docs_sample_code_flags) \
585 -toroot / \
Dirk Dougherty13d30dc32009-07-07 17:37:13 -0700586 -hdf android.whichdoc online \
587 -hdf template.showLanguageMenu true
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800588
589LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590
591include $(BUILD_DROIDDOC)
592
Bill Napiere7c91782010-08-25 18:13:02 -0700593# explicitly specify that online-sdk depends on framework-res and any generated docs
Mike Lockwood089a3852010-08-25 08:21:15 -0400594$(full_target): framework-res-package-target
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595
596# ==== docs that have all of the stuff that's @hidden =======================
597include $(CLEAR_VARS)
598
599LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
600LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
601LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
602LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
603LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
604LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
605LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400606LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800607
608LOCAL_MODULE := hidden
609LOCAL_DROIDDOC_OPTIONS:=\
610 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700611 -title "Android SDK - Including hidden APIs."
612# -hidden
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613
614LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615
616include $(BUILD_DROIDDOC)
617
618# Build ext.jar
619# ============================================================
620
David Deephanphongs62f2ada2010-10-19 14:54:05 -0700621# NOTICE notes for non-obvious sections
622# apache-http - covered by the Apache Commons section.
623
624
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800625ext_dirs := \
Chung-yih Wang2d942312010-08-05 12:17:37 +0800626 ../../external/nist-sip/java \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 ../../external/apache-http/src \
Bai Taoef4fd8e2010-06-07 10:25:53 +0800628 ../../external/tagsoup/src \
629 ../../external/libphonenumber/java/src
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630
631ext_src_files := $(call all-java-files-under,$(ext_dirs))
632
Bai Taoef4fd8e2010-06-07 10:25:53 +0800633ext_res_dirs := \
634 ../../external/libphonenumber/java/src
635
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636# ==== the library =========================================
637include $(CLEAR_VARS)
638
639LOCAL_SRC_FILES := $(ext_src_files)
640
641LOCAL_NO_STANDARD_LIBRARIES := true
642LOCAL_JAVA_LIBRARIES := core
Bai Taoef4fd8e2010-06-07 10:25:53 +0800643LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
Jesse Wilsona1459562010-09-16 17:50:43 -0700644LOCAL_MODULE_TAGS := optional
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645LOCAL_MODULE := ext
646
Guang Zhuac075192010-03-16 19:08:54 -0700647LOCAL_NO_EMMA_INSTRUMENT := true
648LOCAL_NO_EMMA_COMPILE := true
649
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650include $(BUILD_JAVA_LIBRARY)
651
652
653# Include subdirectory makefiles
654# ============================================================
655
656# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
657# team really wants is to build the stuff defined by this makefile.
658ifeq (,$(ONE_SHOT_MAKEFILE))
659include $(call first-makefiles-under,$(LOCAL_PATH))
660endif