blob: 1d42528ef2d980cd6f323ba9969bf02e12c5aa44 [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
Jeff Brown5aa90642013-07-17 20:44:57 -070029# Build the master framework library.
30# The framework contains too many method references (>64K) for poor old DEX.
31# So we first build the framework as a monolithic static library then split it
32# up into smaller pieces.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033# ============================================================
Mike Lockwood35a42e02013-09-30 16:35:37 -070034
35# embedded builds use nothing in frameworks/base
36ifneq ($(ANDROID_BUILD_EMBEDDED),true)
37
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038include $(CLEAR_VARS)
39
40# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
41LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
42
Brad Fitzpatricka63730d2010-02-07 22:25:34 -080043# EventLogTags files.
Dan Egnor18e93962010-02-10 19:27:58 -080044LOCAL_SRC_FILES += \
45 core/java/android/content/EventLogTags.logtags \
Narayan Kamath6dabb632011-07-08 12:13:03 +010046 core/java/android/speech/tts/EventLogTags.logtags \
Dan Egnor18e93962010-02-10 19:27:58 -080047 core/java/android/webkit/EventLogTags.logtags \
Brad Fitzpatricka63730d2010-02-07 22:25:34 -080048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049## READ ME: ########################################################
50##
Mike Lockwoodc1e8aa42009-04-06 10:52:24 -070051## When updating this list of aidl files, consider if that aidl is
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052## part of the SDK API. If it is, also add it to the list below that
53## is preprocessed and distributed with the SDK. This list should
54## not contain any aidl files for parcelables, but the one below should
55## if you intend for 3rd parties to be able to send those objects
56## across process boundaries.
57##
58## READ ME: ########################################################
59LOCAL_SRC_FILES += \
svetoslavganov75986cf2009-05-14 22:28:01 -070060 core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
Svetoslav Ganov42138042012-03-20 11:51:39 -070061 core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \
Fred Quintana60307342009-03-24 22:48:12 -070062 core/java/android/accounts/IAccountManager.aidl \
63 core/java/android/accounts/IAccountManagerResponse.aidl \
64 core/java/android/accounts/IAccountAuthenticator.aidl \
65 core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
Craig Mautner4a1cb222013-12-04 16:14:06 -080066 core/java/android/app/IActivityContainer.aidl \
67 core/java/android/app/IActivityContainerCallback.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070068 core/java/android/app/IActivityController.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 core/java/android/app/IActivityPendingResult.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 core/java/android/app/IAlarmManager.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -070071 core/java/android/app/IBackupAgent.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 core/java/android/app/IInstrumentationWatcher.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 core/java/android/app/INotificationManager.aidl \
Jeff Sharkeya4620792011-05-20 15:29:23 -070074 core/java/android/app/IProcessObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 core/java/android/app/ISearchManager.aidl \
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +010076 core/java/android/app/ISearchManagerCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 core/java/android/app/IServiceConnection.aidl \
Dianne Hackborn80a4af22012-08-27 19:18:31 -070078 core/java/android/app/IStopUserCallback.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 \
Svetoslav Ganov80943d82013-01-02 10:25:37 -080082 core/java/android/app/IUiAutomationConnection.aidl \
Tobias Haamel27b28b32010-02-09 23:09:17 +010083 core/java/android/app/IUiModeManager.aidl \
Svetoslav Ganov80943d82013-01-02 10:25:37 -080084 core/java/android/app/IUserSwitchObserver.aidl \
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070085 core/java/android/app/IWallpaperManager.aidl \
86 core/java/android/app/IWallpaperManagerCallback.aidl \
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080087 core/java/android/app/admin/IDevicePolicyManager.aidl \
Christopher Tate45281862010-03-05 15:46:30 -080088 core/java/android/app/backup/IBackupManager.aidl \
Christopher Tate4a627c72011-04-01 14:43:32 -070089 core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
Christopher Tate45281862010-03-05 15:46:30 -080090 core/java/android/app/backup/IRestoreObserver.aidl \
91 core/java/android/app/backup/IRestoreSession.aidl \
Christopher Tated417d622013-08-19 16:14:25 -070092 core/java/android/app/maintenance/IIdleCallback.aidl \
93 core/java/android/app/maintenance/IIdleService.aidl \
Nick Pellybd022f42009-08-14 18:33:38 -070094 core/java/android/bluetooth/IBluetooth.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 core/java/android/bluetooth/IBluetoothA2dp.aidl \
Nick Pelly16fb88a2009-10-07 07:44:03 +020096 core/java/android/bluetooth/IBluetoothCallback.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 core/java/android/bluetooth/IBluetoothHeadset.aidl \
Matthew Xie3e8c82e2012-02-16 16:57:18 -080098 core/java/android/bluetooth/IBluetoothHeadsetPhone.aidl \
Matthew Xie13450df2012-03-22 17:18:37 -070099 core/java/android/bluetooth/IBluetoothHealth.aidl \
Jaikumar Ganesh2ea1e852011-04-01 16:33:09 -0700100 core/java/android/bluetooth/IBluetoothHealthCallback.aidl \
Matthew Xiebf246ef2012-03-21 23:15:06 -0700101 core/java/android/bluetooth/IBluetoothInputDevice.aidl \
fredc0f420372012-04-12 00:02:00 -0700102 core/java/android/bluetooth/IBluetoothPan.aidl \
103 core/java/android/bluetooth/IBluetoothManager.aidl \
104 core/java/android/bluetooth/IBluetoothManagerCallback.aidl \
Jiafa Liu3f416732009-07-02 16:36:02 +0800105 core/java/android/bluetooth/IBluetoothPbap.aidl \
Matthew Xiefe3807a2013-07-18 17:31:50 -0700106 core/java/android/bluetooth/IBluetoothMap.aidl \
Jaikumar Ganeshef2cb7c2011-07-21 18:13:38 -0700107 core/java/android/bluetooth/IBluetoothStateChangeCallback.aidl \
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800108 core/java/android/bluetooth/IBluetoothGatt.aidl \
109 core/java/android/bluetooth/IBluetoothGattCallback.aidl \
110 core/java/android/bluetooth/IBluetoothGattServerCallback.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -0700111 core/java/android/content/IClipboard.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700112 core/java/android/content/IContentService.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700113 core/java/android/content/IIntentReceiver.aidl \
114 core/java/android/content/IIntentSender.aidl \
Dianne Hackborn9f531192010-08-04 17:48:03 -0700115 core/java/android/content/IOnPrimaryClipChangedListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 core/java/android/content/ISyncAdapter.aidl \
117 core/java/android/content/ISyncContext.aidl \
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700118 core/java/android/content/ISyncServiceAdapter.aidl \
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700119 core/java/android/content/ISyncStatusObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 core/java/android/content/pm/IPackageDataObserver.aidl \
121 core/java/android/content/pm/IPackageDeleteObserver.aidl \
122 core/java/android/content/pm/IPackageInstallObserver.aidl \
123 core/java/android/content/pm/IPackageManager.aidl \
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -0800124 core/java/android/content/pm/IPackageMoveObserver.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 core/java/android/content/pm/IPackageStatsObserver.aidl \
126 core/java/android/database/IContentObserver.aidl \
Igor Murashkin4491d682013-05-31 16:43:48 -0700127 core/java/android/hardware/ICameraService.aidl \
128 core/java/android/hardware/ICameraServiceListener.aidl \
129 core/java/android/hardware/ICamera.aidl \
130 core/java/android/hardware/ICameraClient.aidl \
Erik Gilling51e95df2013-06-26 11:06:51 -0700131 core/java/android/hardware/IConsumerIrService.aidl \
Igor Murashkin4491d682013-05-31 16:43:48 -0700132 core/java/android/hardware/IProCameraUser.aidl \
133 core/java/android/hardware/IProCameraCallbacks.aidl \
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -0700134 core/java/android/hardware/camera2/ICameraDeviceUser.aidl \
135 core/java/android/hardware/camera2/ICameraDeviceCallbacks.aidl \
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400136 core/java/android/hardware/ISerialManager.aidl \
Jeff Brownfa25bf52012-07-23 19:26:30 -0700137 core/java/android/hardware/display/IDisplayManager.aidl \
Jeff Brownbd6e1502012-08-28 03:27:37 -0700138 core/java/android/hardware/display/IDisplayManagerCallback.aidl \
Jeff Brown4532e612012-04-05 14:27:12 -0700139 core/java/android/hardware/input/IInputManager.aidl \
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700140 core/java/android/hardware/input/IInputDevicesChangedListener.aidl \
destradaa1af4b022013-07-12 15:43:36 -0700141 core/java/android/hardware/location/IFusedLocationHardware.aidl \
142 core/java/android/hardware/location/IFusedLocationHardwareSink.aidl \
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700143 core/java/android/hardware/location/IGeofenceHardware.aidl \
144 core/java/android/hardware/location/IGeofenceHardwareCallback.aidl \
Jaikumar Ganeshda650892013-04-17 12:19:10 -0700145 core/java/android/hardware/location/IGeofenceHardwareMonitorCallback.aidl \
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800146 core/java/android/hardware/usb/IUsbManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 core/java/android/net/IConnectivityManager.aidl \
San Mehat4d02d002010-01-22 16:07:46 -0800148 core/java/android/net/INetworkManagementEventObserver.aidl \
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700149 core/java/android/net/INetworkPolicyListener.aidl \
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700150 core/java/android/net/INetworkPolicyManager.aidl \
Jeff Sharkey75279902011-05-24 18:39:45 -0700151 core/java/android/net/INetworkStatsService.aidl \
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -0700152 core/java/android/net/INetworkStatsSession.aidl \
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700153 core/java/android/net/nsd/INsdManager.aidl \
Martijn Coenen5b1e0322013-09-02 20:38:47 -0700154 core/java/android/nfc/IAppCallback.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700155 core/java/android/nfc/INfcAdapter.aidl \
Nick Pelly367f41f2011-03-08 11:43:30 -0800156 core/java/android/nfc/INfcAdapterExtras.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700157 core/java/android/nfc/INfcTag.aidl \
Martijn Coenena7397882013-07-30 20:07:47 -0700158 core/java/android/nfc/INfcCardEmulation.aidl \
Andres Morales38a7ed02013-11-14 19:02:56 -0800159 core/java/android/nfc/INfcUnlockSettings.aidl \
Todd Poynora9de3462013-05-22 18:53:29 -0700160 core/java/android/os/IBatteryPropertiesListener.aidl \
161 core/java/android/os/IBatteryPropertiesRegistrar.aidl \
Jeff Browna7771df2012-05-07 20:06:46 -0700162 core/java/android/os/ICancellationSignal.aidl \
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400163 core/java/android/os/IHardwareService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 core/java/android/os/IMessenger.aidl \
Dianne Hackborn77b987f2014-02-26 16:20:52 -0800165 core/java/android/os/INetworkActivityListener.aidl \
San Mehat873f2142010-01-14 10:25:07 -0800166 core/java/android/os/INetworkManagementService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 core/java/android/os/IPermissionController.aidl \
168 core/java/android/os/IPowerManager.aidl \
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700169 core/java/android/os/IRemoteCallback.aidl \
Glenn Kasten07b04652012-04-23 15:00:43 -0700170 core/java/android/os/ISchedulingPolicyService.aidl \
Christopher Tate8662cab52012-02-23 14:59:36 -0800171 core/java/android/os/IUpdateLock.aidl \
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800172 core/java/android/os/IUserManager.aidl \
Mike Lockwood3a322132009-11-24 00:30:52 -0500173 core/java/android/os/IVibratorService.aidl \
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700174 core/java/android/service/notification/INotificationListener.aidl \
Svetoslav Ganova0027152013-06-25 14:59:53 -0700175 core/java/android/print/ILayoutResultCallback.aidl \
Svetoslav Ganov44720af2013-08-20 16:32:53 -0700176 core/java/android/print/IPrinterDiscoveryObserver.aidl \
Svetoslav Ganova0027152013-06-25 14:59:53 -0700177 core/java/android/print/IPrintDocumentAdapter.aidl \
Svetoslav Ganov858a1852013-10-17 22:20:40 -0700178 core/java/android/print/IPrintDocumentAdapterObserver.aidl \
Svetoslav Ganov704697b2013-09-21 20:30:24 -0700179 core/java/android/print/IPrintJobStateChangeListener.aidl \
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700180 core/java/android/print/IPrintManager.aidl \
Svetoslav Ganova0027152013-06-25 14:59:53 -0700181 core/java/android/print/IPrintSpooler.aidl \
182 core/java/android/print/IPrintSpoolerCallbacks.aidl \
183 core/java/android/print/IPrintSpoolerClient.aidl \
184 core/java/android/print/IWriteResultCallback.aidl \
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700185 core/java/android/printservice/IPrintService.aidl \
186 core/java/android/printservice/IPrintServiceClient.aidl \
Jeff Brown26875502014-01-30 21:47:47 -0800187 core/java/android/service/dreams/IDozeHardware.aidl \
Daniel Sandler7d276c32012-01-30 14:33:52 -0500188 core/java/android/service/dreams/IDreamManager.aidl \
189 core/java/android/service/dreams/IDreamService.aidl \
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700190 core/java/android/service/wallpaper/IWallpaperConnection.aidl \
191 core/java/android/service/wallpaper/IWallpaperEngine.aidl \
192 core/java/android/service/wallpaper/IWallpaperService.aidl \
193 core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\
194 core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\
svetoslavganov75986cf2009-05-14 22:28:01 -0700195 core/java/android/view/accessibility/IAccessibilityManager.aidl \
196 core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 core/java/android/view/IApplicationToken.aidl \
Romain Guy3b748a42013-04-17 18:54:38 -0700198 core/java/android/view/IAssetAtlas.aidl \
Svetoslav Ganov545252f2012-12-10 18:29:24 -0800199 core/java/android/view/IMagnificationCallbacks.aidl \
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700200 core/java/android/view/IInputFilter.aidl \
201 core/java/android/view/IInputFilterHost.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 core/java/android/view/IOnKeyguardExitResult.aidl \
203 core/java/android/view/IRotationWatcher.aidl \
204 core/java/android/view/IWindow.aidl \
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800205 core/java/android/view/IWindowFocusObserver.aidl \
206 core/java/android/view/IWindowId.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 core/java/android/view/IWindowManager.aidl \
208 core/java/android/view/IWindowSession.aidl \
Alex Gruenstein361ec772009-09-15 11:19:58 -0700209 core/java/android/speech/IRecognitionListener.aidl \
210 core/java/android/speech/IRecognitionService.aidl \
Bjorn Bringert50e657b2011-03-08 16:00:40 +0000211 core/java/android/speech/tts/ITextToSpeechCallback.aidl \
212 core/java/android/speech/tts/ITextToSpeechService.aidl \
Dianne Hackbornc2293022013-02-06 23:14:49 -0800213 core/java/com/android/internal/app/IAppOpsCallback.aidl \
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800214 core/java/com/android/internal/app/IAppOpsService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 core/java/com/android/internal/app/IBatteryStats.aidl \
Dianne Hackborn23fb6e82013-08-07 10:08:22 -0700216 core/java/com/android/internal/app/IProcessStats.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 core/java/com/android/internal/app/IUsageStats.aidl \
Suchi Amalapurapuc028be42010-01-25 12:19:12 -0800218 core/java/com/android/internal/app/IMediaContainerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700219 core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
220 core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
Christopher Tate487529a2009-04-29 14:03:25 -0700221 core/java/com/android/internal/backup/IBackupTransport.aidl \
Christopher Tate46cc43c2013-02-19 14:08:59 -0800222 core/java/com/android/internal/backup/IObbBackupService.aidl \
Jim Miller6edf2632011-09-05 16:03:14 -0700223 core/java/com/android/internal/policy/IFaceLockCallback.aidl \
224 core/java/com/android/internal/policy/IFaceLockInterface.aidl \
Jim Miller25190572013-02-28 17:36:24 -0800225 core/java/com/android/internal/policy/IKeyguardShowCallback.aidl \
226 core/java/com/android/internal/policy/IKeyguardExitCallback.aidl \
Jim Miller5ecd8112013-01-09 18:50:26 -0800227 core/java/com/android/internal/policy/IKeyguardService.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800228 core/java/com/android/internal/os/IDropBoxManagerService.aidl \
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700229 core/java/com/android/internal/os/IResultReceiver.aidl \
Joe Onorato0cbda992010-05-02 16:28:15 -0700230 core/java/com/android/internal/statusbar/IStatusBar.aidl \
231 core/java/com/android/internal/statusbar/IStatusBarService.aidl \
satok988323c2011-06-22 16:38:13 +0900232 core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
233 core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
234 core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
235 core/java/com/android/internal/textservice/ITextServicesManager.aidl \
236 core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 core/java/com/android/internal/view/IInputContext.aidl \
238 core/java/com/android/internal/view/IInputContextCallback.aidl \
239 core/java/com/android/internal/view/IInputMethod.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 core/java/com/android/internal/view/IInputMethodClient.aidl \
241 core/java/com/android/internal/view/IInputMethodManager.aidl \
242 core/java/com/android/internal/view/IInputMethodSession.aidl \
Michael Wright52a53522013-03-14 10:59:38 -0700243 core/java/com/android/internal/view/IInputSessionCallback.aidl \
Amith Yamasani52c489c2012-03-28 11:42:42 -0700244 core/java/com/android/internal/widget/ILockSettings.aidl \
Winson Chung499cb9f2010-07-16 11:18:17 -0700245 core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
Winson Chung81f39eb2011-01-11 18:05:01 -0800246 core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
Brian Carlstrom93201f52011-06-09 15:05:35 -0700247 keystore/java/android/security/IKeyChainAliasCallback.aidl \
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700248 keystore/java/android/security/IKeyChainService.aidl \
Bai Taoa58a8752010-07-13 15:32:16 +0800249 location/java/android/location/ICountryDetector.aidl \
250 location/java/android/location/ICountryListener.aidl \
destradaa1af4b022013-07-12 15:43:36 -0700251 location/java/android/location/IFusedProvider.aidl \
Mike Lockwooda55c3212009-04-15 11:10:11 -0400252 location/java/android/location/IGeocodeProvider.aidl \
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700253 location/java/android/location/IGeofenceProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 location/java/android/location/IGpsStatusListener.aidl \
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400255 location/java/android/location/IGpsStatusProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 location/java/android/location/ILocationListener.aidl \
257 location/java/android/location/ILocationManager.aidl \
destradaa1af4b022013-07-12 15:43:36 -0700258 location/java/android/location/IFusedGeofenceHardware.aidl \
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700259 location/java/android/location/IGpsGeofenceHardware.aidl \
Danke Xie22d1f9f2009-08-18 18:28:45 -0400260 location/java/android/location/INetInitiatedListener.aidl \
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700261 location/java/com/android/internal/location/ILocationProvider.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 media/java/android/media/IAudioService.aidl \
Jean-Michel Trivid5176cf2010-01-28 11:56:42 -0800263 media/java/android/media/IAudioFocusDispatcher.aidl \
Jean-Michel Trivi13570122012-06-19 14:03:09 -0700264 media/java/android/media/IAudioRoutesObserver.aidl \
Andreas Huberd2506a52014-01-29 10:32:46 -0800265 media/java/android/media/IMediaHTTPConnection.aidl \
266 media/java/android/media/IMediaHTTPService.aidl \
Jeff Brown69b07162013-11-07 00:30:16 -0800267 media/java/android/media/IMediaRouterClient.aidl \
268 media/java/android/media/IMediaRouterService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 media/java/android/media/IMediaScannerListener.aidl \
270 media/java/android/media/IMediaScannerService.aidl \
Jean-Michel Trivi4426e422011-08-18 19:16:47 -0700271 media/java/android/media/IRemoteControlClient.aidl \
272 media/java/android/media/IRemoteControlDisplay.aidl \
Jeff Brownf3c99e82013-11-05 16:29:21 -0800273 media/java/android/media/IRemoteDisplayCallback.aidl \
274 media/java/android/media/IRemoteDisplayProvider.aidl \
Jean-Michel Trivi13570122012-06-19 14:03:09 -0700275 media/java/android/media/IRemoteVolumeObserver.aidl \
Jeff Sharkey098d5802012-04-26 17:30:34 -0700276 media/java/android/media/IRingtonePlayer.aidl \
RoboErik2f5b0572014-02-21 10:30:38 -0800277 media/java/android/media/session/IMediaController.aidl \
278 media/java/android/media/session/IMediaControllerCallback.aidl \
279 media/java/android/media/session/IMediaSession.aidl \
280 media/java/android/media/session/IMediaSessionCallback.aidl \
281 media/java/android/media/session/IMediaSessionManager.aidl \
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800282 telecomm/java/com/android/internal/telecomm/ICallService.aidl \
283 telecomm/java/com/android/internal/telecomm/ICallServiceAdapter.aidl \
284 telecomm/java/com/android/internal/telecomm/ICallServiceLookupResponse.aidl \
285 telecomm/java/com/android/internal/telecomm/ICallServiceProvider.aidl \
286 telecomm/java/com/android/internal/telecomm/ICallServiceSelectionResponse.aidl \
287 telecomm/java/com/android/internal/telecomm/ICallServiceSelector.aidl \
288 telecomm/java/com/android/internal/telecomm/ICallSwitchabilityResponse.aidl \
289 telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl \
290 telecomm/java/com/android/internal/telecomm/IInCallService.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
292 telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
293 telephony/java/com/android/internal/telephony/ITelephony.aidl \
Sailesh Nepal697d9f22013-11-12 13:26:27 -0800294 telephony/java/com/android/internal/telephony/IThirdPartyCallListener.aidl \
295 telephony/java/com/android/internal/telephony/IThirdPartyCallProvider.aidl \
Sailesh Nepal512b2832014-02-11 22:22:42 -0800296 telephony/java/com/android/internal/telephony/IThirdPartyCallSendDtmfCallback.aidl \
Sailesh Nepal697d9f22013-11-12 13:26:27 -0800297 telephony/java/com/android/internal/telephony/IThirdPartyCallService.aidl \
Wink Saville5a725532013-02-07 17:03:05 -0800298 telephony/java/com/android/internal/telephony/ISms.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
noda7640caa2010-08-20 08:10:00 +0900300 telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
John Wange91bc682009-03-27 18:24:06 -0700301 wifi/java/android/net/wifi/IWifiManager.aidl \
Jason Monk602b2322013-07-03 17:04:33 -0400302 wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \
Jason Monk9ced3cd2013-08-12 16:42:38 -0400303 packages/services/PacProcessor/com/android/net/IProxyService.aidl \
Jason Monk6f8a68f2013-08-23 19:21:25 -0400304 packages/services/Proxy/com/android/net/IProxyCallback.aidl \
305 packages/services/Proxy/com/android/net/IProxyPortListener.aidl \
Doug Zongker45e6dbf2009-12-08 12:47:12 -0800306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
308LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
309
310LOCAL_INTERMEDIATE_SOURCES := \
Joe Onorato80a60ba2010-07-14 19:58:30 -0700311 $(framework_res_source_path)/android/R.java \
312 $(framework_res_source_path)/android/Manifest.java \
313 $(framework_res_source_path)/com/android/internal/R.java
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314
315LOCAL_NO_STANDARD_LIBRARIES := true
Kenny Root12e75222013-04-23 22:34:24 -0700316LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt core core-junit ext okhttp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317
Jeff Brown5aa90642013-07-17 20:44:57 -0700318LOCAL_MODULE := framework-base
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319
Ying Wang96076c92013-08-14 17:01:33 -0700320LOCAL_RMTYPEDEFS := true
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321
Jeff Brown5aa90642013-07-17 20:44:57 -0700322include $(BUILD_STATIC_JAVA_LIBRARY)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323
324# Make sure that R.java and Manifest.java are built before we build
325# the source for this library.
326framework_res_R_stamp := \
327 $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
328$(full_classes_compiled_jar): $(framework_res_R_stamp)
329
Jeff Brown5aa90642013-07-17 20:44:57 -0700330# Build part 1 of the framework library.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331# ============================================================
Jeff Brown5aa90642013-07-17 20:44:57 -0700332include $(CLEAR_VARS)
333
334LOCAL_MODULE := framework
335LOCAL_MODULE_CLASS := JAVA_LIBRARIES
336LOCAL_NO_STANDARD_LIBRARIES := true
337LOCAL_STATIC_JAVA_LIBRARIES := framework-base
338LOCAL_DX_FLAGS := --core-library
339
340# Packages to include, use \* wildcard to include descendants.
341LOCAL_JAR_PACKAGES := android\*
342
343# List of classes and interfaces which should be loaded by the Zygote.
344LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
345
346include $(BUILD_JAVA_LIBRARY)
347framework_module := $(LOCAL_INSTALLED_MODULE)
348
349# Build part 2 of the framework library.
350# ============================================================
351include $(CLEAR_VARS)
352
353LOCAL_MODULE := framework2
354LOCAL_MODULE_CLASS := JAVA_LIBRARIES
355LOCAL_NO_STANDARD_LIBRARIES := true
356LOCAL_STATIC_JAVA_LIBRARIES := framework-base
357LOCAL_DX_FLAGS := --core-library
358
359# Packages to include, use \* wildcard to include descendants.
360LOCAL_JAR_PACKAGES := com\* javax\*
361
362include $(BUILD_JAVA_LIBRARY)
363framework2_module := $(LOCAL_INSTALLED_MODULE)
364
365# Make sure that all framework modules are installed when framework is.
366# ============================================================
367$(framework_module): | $(dir $(framework_module))framework-res.apk
368$(framework_module): | $(dir $(framework_module))framework2.jar
369
370framework_built := $(call java-lib-deps,framework framework2)
371
372# Copy AIDL files to be preprocessed and included in the SDK,
373# specified relative to the root of the build tree.
374# ============================================================
375include $(CLEAR_VARS)
376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377aidl_files := \
Fred Quintana60307342009-03-24 22:48:12 -0700378 frameworks/base/core/java/android/accounts/IAccountManager.aidl \
379 frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
380 frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
381 frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 frameworks/base/core/java/android/app/Notification.aidl \
383 frameworks/base/core/java/android/app/PendingIntent.aidl \
Nick Pellybb392ba2013-04-22 15:52:03 +1000384 frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
Nick Pelly459ba862009-11-04 17:23:55 -0800385 frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
Jaikumar Ganesh2ea1e852011-04-01 16:33:09 -0700386 frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 frameworks/base/core/java/android/content/ComponentName.aidl \
Nick Pellybb392ba2013-04-22 15:52:03 +1000388 frameworks/base/core/java/android/content/ContentValues.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 frameworks/base/core/java/android/content/Intent.aidl \
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700390 frameworks/base/core/java/android/content/IntentSender.aidl \
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800391 frameworks/base/core/java/android/content/PeriodicSync.aidl \
Matthew Williamsfa774182013-06-18 15:44:11 -0700392 frameworks/base/core/java/android/content/SyncRequest.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 frameworks/base/core/java/android/content/SyncStats.aidl \
394 frameworks/base/core/java/android/content/res/Configuration.aidl \
Nick Pellybb392ba2013-04-22 15:52:03 +1000395 frameworks/base/core/java/android/database/CursorWindow.aidl \
destradaa0682809a2013-08-12 18:50:30 -0700396 frameworks/base/core/java/android/hardware/location/GeofenceHardwareRequestParcelable.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 frameworks/base/core/java/android/net/Uri.aidl \
Nick Pellyf36c6db2010-10-14 19:16:35 -0700398 frameworks/base/core/java/android/nfc/NdefMessage.aidl \
399 frameworks/base/core/java/android/nfc/NdefRecord.aidl \
400 frameworks/base/core/java/android/nfc/Tag.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800401 frameworks/base/core/java/android/os/Bundle.aidl \
Dan Egnorf18a01c2009-11-12 11:32:50 -0800402 frameworks/base/core/java/android/os/DropBoxManager.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
Nick Pellyaef439e2009-09-28 12:33:17 -0700404 frameworks/base/core/java/android/os/ParcelUuid.aidl \
Svetoslav Ganovc0877962014-01-21 15:22:26 -0800405 frameworks/base/core/java/android/print/PrinterInfo.aidl \
406 frameworks/base/core/java/android/print/PageRange.aidl \
407 frameworks/base/core/java/android/print/PrintAttributes.aidl \
408 frameworks/base/core/java/android/print/PrinterCapabilitiesInfo.aidl \
409 frameworks/base/core/java/android/print/PrinterId.aidl \
410 frameworks/base/core/java/android/print/PrintJobId.aidl \
411 frameworks/base/core/java/android/print/PrintJobInfo.aidl \
412 frameworks/base/core/java/android/view/accessibility/AccessibilityEvent.aidl \
413 frameworks/base/core/java/android/view/accessibility/AccessibilityNodeInfo.aidl \
414 frameworks/base/core/java/android/view/accessibility/AccessibilityRecord.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 frameworks/base/core/java/android/view/KeyEvent.aidl \
416 frameworks/base/core/java/android/view/MotionEvent.aidl \
417 frameworks/base/core/java/android/view/Surface.aidl \
418 frameworks/base/core/java/android/view/WindowManager.aidl \
419 frameworks/base/core/java/android/widget/RemoteViews.aidl \
satok988323c2011-06-22 16:38:13 +0900420 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
421 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
422 frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
423 frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \
424 frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425 frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
426 frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
428 frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
429 frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
430 frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
431 frameworks/base/graphics/java/android/graphics/Rect.aidl \
432 frameworks/base/graphics/java/android/graphics/Region.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 frameworks/base/location/java/android/location/Criteria.aidl \
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700434 frameworks/base/location/java/android/location/Geofence.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800435 frameworks/base/location/java/android/location/Location.aidl \
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700436 frameworks/base/location/java/android/location/LocationRequest.aidl \
destradaa1af4b022013-07-12 15:43:36 -0700437 frameworks/base/location/java/android/location/FusedBatchOptions.aidl \
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700438 frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \
439 frameworks/base/location/java/com/android/internal/location/ProviderRequest.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800440 frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
441 frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
Raphaeld8b51a22009-06-08 22:05:22 -0700442 frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
Robert Greenwalt0451d592013-08-01 18:24:13 -0700443 frameworks/base/wifi/java/android/net/wifi/BatchedScanSettings.aidl \
444 frameworks/base/wifi/java/android/net/wifi/BatchedScanResult.aidl \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445
446gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
447$(gen): PRIVATE_SRC_FILES := $(aidl_files)
448ALL_SDK_FILES += $(gen)
449$(gen): $(aidl_files) | $(AIDL)
450 @echo Aidl Preprocess: $@
451 $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
452
453# the documentation
454# ============================================================
455
456# TODO: deal with com/google/android/googleapps
457packages_to_document := \
458 android \
459 javax/microedition/khronos
460
461# Search through the base framework dirs for these packages.
462# The result will be relative to frameworks/base.
463fwbase_dirs_to_document := \
Brett Chabote70f61b2010-02-19 10:49:27 -0800464 test-runner/src \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 $(patsubst $(LOCAL_PATH)/%,%, \
466 $(wildcard \
467 $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
468 $(addprefix $(dir)/, $(packages_to_document)) \
469 ) \
470 ) \
471 )
472
Brian Carlstromcf9a0132011-01-05 17:52:36 -0800473# include definition of libcore_to_document
Brett Chabot571db322012-04-16 10:13:59 -0700474include libcore/Docs.mk
475
476# include definition of junit_to_document
477include external/junit/Common.mk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478
479non_base_dirs := \
Wink Savillea639b312012-07-10 12:37:54 -0700480 ../../external/apache-http/src/org/apache/http \
Jake Hamby43e51a32013-09-18 13:18:09 -0700481 ../opt/telephony/src/java/android/provider \
Wink Savillea639b312012-07-10 12:37:54 -0700482 ../opt/telephony/src/java/android/telephony \
483 ../opt/telephony/src/java/android/telephony/gsm \
Wink Savillecbb2a2a2013-01-28 15:27:47 -0800484 ../opt/net/voip/src/java/android/net/rtp \
485 ../opt/net/voip/src/java/android/net/sip
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486
487# These are relative to frameworks/base
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800488dirs_to_check_apis := \
489 $(fwbase_dirs_to_document) \
Brian Carlstroma9602db2011-03-24 14:14:28 -0700490 $(non_base_dirs)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800491
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800492# These are relative to frameworks/base
493# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
494dirs_to_document := \
495 $(dirs_to_check_apis) \
496 $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS))
497
498# These are relative to frameworks/base
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499html_dirs := \
500 $(FRAMEWORKS_BASE_SUBDIRS) \
501 $(non_base_dirs)
502
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800503# Common sources for doc check and api check
504common_src_files := \
505 $(call find-other-html-files, $(html_dirs)) \
Ying Wangc79d6a92013-12-04 16:01:06 -0800506 $(addprefix ../../libcore/, $(libcore_to_document)) \
507 $(addprefix ../../external/junit/, $(junit_to_document))
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800508
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509# These are relative to frameworks/base
510framework_docs_LOCAL_SRC_FILES := \
511 $(call find-other-java-files, $(dirs_to_document)) \
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800512 $(common_src_files)
513
514# These are relative to frameworks/base
515framework_docs_LOCAL_API_CHECK_SRC_FILES := \
516 $(call find-other-java-files, $(dirs_to_check_apis)) \
517 $(common_src_files)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518
Joe Onorato626db912010-05-17 18:21:44 -0700519# This is used by ide.mk as the list of source files that are
520# always included.
521INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
524 $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
525
526framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700527 $(framework_res_source_path)/android/R.java \
528 $(framework_res_source_path)/android/Manifest.java \
529 $(framework_res_source_path)/com/android/internal/R.java
530
531framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES := \
532 bouncycastle \
Kenny Roote9ae6822013-04-29 23:09:03 -0700533 conscrypt \
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700534 core \
Jeff Browneb6403e2013-04-26 12:02:36 -0700535 okhttp \
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700536 ext \
537 framework \
Jeff Brown5aa90642013-07-17 20:44:57 -0700538 framework2 \
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700539 mms-common \
540 telephony-common \
541 voip-common
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800542
543framework_docs_LOCAL_JAVA_LIBRARIES := \
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700544 $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) \
545 $(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546
547framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Joe Onorato3fec2bf2010-08-27 15:05:39 -0400548framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
Scott Main6dceb762009-07-31 13:03:36 -0700549# The since flag (-since N.xml API_LEVEL) is used to add API Level information
550# to the reference documentation. Must be in order of oldest to newest.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551framework_docs_LOCAL_DROIDDOC_OPTIONS := \
Joe Onoratod20e5d02010-09-16 11:56:03 -0400552 -knowntags ./frameworks/base/docs/knowntags.txt \
Ying Wangf74f0de2012-12-04 15:12:49 -0800553 -since $(SRC_API_DIR)/1.xml 1 \
554 -since $(SRC_API_DIR)/2.xml 2 \
555 -since $(SRC_API_DIR)/3.xml 3 \
556 -since $(SRC_API_DIR)/4.xml 4 \
557 -since $(SRC_API_DIR)/5.xml 5 \
558 -since $(SRC_API_DIR)/6.xml 6 \
559 -since $(SRC_API_DIR)/7.xml 7 \
560 -since $(SRC_API_DIR)/8.xml 8 \
561 -since $(SRC_API_DIR)/9.xml 9 \
562 -since $(SRC_API_DIR)/10.xml 10 \
563 -since $(SRC_API_DIR)/11.xml 11 \
564 -since $(SRC_API_DIR)/12.xml 12 \
565 -since $(SRC_API_DIR)/13.xml 13 \
566 -since $(SRC_API_DIR)/14.txt 14 \
567 -since $(SRC_API_DIR)/15.txt 15 \
568 -since $(SRC_API_DIR)/16.txt 16 \
569 -since $(SRC_API_DIR)/17.txt 17 \
Scott Main0d9e45a2013-04-11 11:37:29 -0700570 -since $(SRC_API_DIR)/18.txt 18 \
Scott Main49551ad2013-10-03 16:46:53 -0700571 -since $(SRC_API_DIR)/19.txt 19 \
Joe Onorato0ba4ac72010-09-16 15:42:20 -0400572 -werror -hide 113 \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 -overview $(LOCAL_PATH)/core/java/overview.html
574
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700575framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR:= \
Jeff Brown5aa90642013-07-17 20:44:57 -0700576 $(call intermediates-dir-for,JAVA_LIBRARIES,framework-base,,COMMON)
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700577
578framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= \
579 $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR) \
Jeff Brownae1d6f22013-05-10 20:37:12 -0700580 $(foreach lib,$(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES),$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)) \
581 $(foreach lib,$(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES),$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib)-res,,COMMON))
Joe Onoratod20e5d02010-09-16 11:56:03 -0400582
583framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
584 frameworks/base/docs/knowntags.txt
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585
Dirk Dougherty5c678ce2013-11-21 18:11:58 -0800586samples_dir := development/samples/browseable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587
Dirk Doughertya6c02672013-09-11 11:53:35 -0700588# Whitelist of valid groups, used for default TOC grouping. Each sample must
589# belong to one (and only one) group. Assign samples to groups by setting
590# a sample.group var to one of these groups in the sample's _index.jd.
Dirk Doughertyc5f168a2013-10-29 20:59:20 -0700591sample_groups := -samplegroup Background \
592 -samplegroup Connectivity \
593 -samplegroup Content \
594 -samplegroup Input \
595 -samplegroup Media \
Dirk Dougherty35cb4e42014-02-07 21:05:43 -0800596 -samplegroup RenderScript \
Dirk Doughertyc5f168a2013-10-29 20:59:20 -0700597 -samplegroup Security \
Dirk Dougherty35cb4e42014-02-07 21:05:43 -0800598 -samplegroup Sensors \
Dirk Doughertyc5f168a2013-10-29 20:59:20 -0700599 -samplegroup Testing \
600 -samplegroup UI \
601 -samplegroup Views
Dirk Doughertya6c02672013-09-11 11:53:35 -0700602
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700603## SDK version identifiers used in the published docs
604 # major[.minor] version for current SDK. (full releases only)
Scott Main332408f2013-10-04 13:43:26 -0700605framework_docs_SDK_VERSION:=4.4
Dirk Doughertyf11d7d52009-08-05 19:04:18 -0700606 # release version (ie "Release x") (full releases only)
Scott Main62e97012011-02-07 16:35:46 -0800607framework_docs_SDK_REL_ID:=1
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700608
609framework_docs_LOCAL_DROIDDOC_OPTIONS += \
610 -hdf sdk.version $(framework_docs_SDK_VERSION) \
Scott Mainb402f112010-11-29 14:28:13 -0800611 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
Dirk Dougherty5c678ce2013-11-21 18:11:58 -0800612 -hdf sdk.preview 0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400614# ==== the api stubs and current.xml ===========================
615include $(CLEAR_VARS)
616
Svetoslav Ganov92f12f52011-11-17 11:53:46 -0800617LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400618LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700619LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400620LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
621LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
622LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
Jeff Browncaf7b0a2013-04-25 21:24:44 -0700623LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400624LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400625
626LOCAL_MODULE := api-stubs
627
628LOCAL_DROIDDOC_OPTIONS:=\
629 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
630 -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
Joe Onorato5e88ac72011-03-09 13:34:39 -0800631 -api $(INTERNAL_PLATFORM_API_FILE) \
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400632 -nodocs
633
634LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400635
Joe Onorato7e3cf122010-09-01 10:41:35 -0700636LOCAL_UNINSTALLABLE_MODULE := true
637
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400638include $(BUILD_DROIDDOC)
639
Ying Wang68064572010-05-07 15:00:10 -0700640# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
641$(full_target): $(framework_built) $(gen)
Joe Onoratoccfca2e2009-07-20 11:57:12 -0400642$(INTERNAL_PLATFORM_API_FILE): $(full_target)
643$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
644
Joe Onorato4314e2e2010-08-27 17:13:22 -0400645# ==== check javadoc comments but don't generate docs ========
646include $(CLEAR_VARS)
647
648LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
649LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
650LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
651LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
652LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
653LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
654LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400655LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Joe Onorato4314e2e2010-08-27 17:13:22 -0400656
657LOCAL_MODULE := doc-comment-check
658
659LOCAL_DROIDDOC_OPTIONS:=\
660 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Joe Onorato4314e2e2010-08-27 17:13:22 -0400661 -parsecomments
662
663LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Joe Onorato4314e2e2010-08-27 17:13:22 -0400664
Joe Onorato7e3cf122010-09-01 10:41:35 -0700665LOCAL_UNINSTALLABLE_MODULE := true
666
Joe Onorato4314e2e2010-08-27 17:13:22 -0400667include $(BUILD_DROIDDOC)
668
669# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
670$(full_target): $(framework_built) $(gen)
671
Ying Wang33a436d2012-09-27 17:09:53 -0700672# Run this for checkbuild
673.PHONY: checkbuild
674checkbuild: doc-comment-check-docs
Joe Onorato4314e2e2010-08-27 17:13:22 -0400675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676# ==== static html in the sdk ==================================
677include $(CLEAR_VARS)
678
679LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
680LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
681LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
682LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
683LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
684LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
685LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400686LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687
688LOCAL_MODULE := offline-sdk
689
690LOCAL_DROIDDOC_OPTIONS:=\
691 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Doughertya3458332013-08-21 14:47:12 -0700692 -offlinemode \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800693 -title "Android SDK" \
694 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
695 -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696 -sdkvalues $(OUT_DOCS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700697 -hdf android.whichdoc offline
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698
699LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700
701include $(BUILD_DROIDDOC)
702
703static_doc_index_redirect := $(out_dir)/index.html
704$(static_doc_index_redirect): \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700705 $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706 $(hide) mkdir -p $(dir $@)
707 $(hide) $(ACP) $< $@
708
709$(full_target): $(static_doc_index_redirect)
710$(full_target): $(framework_built)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711
Dirk Dougherty289ad992013-01-28 15:43:49 -0800712# ==== docs for the web (on the androiddevdocs app engine server) =======================
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713include $(CLEAR_VARS)
714
715LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
716LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
717LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
718LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
719LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
720LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
721LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
722LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400723LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
Dirk Dougherty5f0462a2013-11-19 13:15:07 -0800724LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725
726LOCAL_MODULE := online-sdk
727
728LOCAL_DROIDDOC_OPTIONS:= \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700729 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Dougherty2e2c9102009-04-20 17:56:34 -0700730 -toroot / \
Dirk Dougherty6000f1e2013-11-22 14:01:48 -0800731 -hdf android.whichdoc online \
732 $(sample_groups) \
733 -hdf android.hasSamples true \
734 -samplesdir $(samples_dir)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735
736LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800737
738include $(BUILD_DROIDDOC)
739
Dirk Dougherty289ad992013-01-28 15:43:49 -0800740# ==== docs for the web (on the devsite app engine server) =======================
741include $(CLEAR_VARS)
742LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
743LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
744LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
745LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
746LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
747LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
748LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
749LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
750LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
751# specify a second html input dir and an output path relative to OUT_DIR)
Dirk Dougherty5f0462a2013-11-19 13:15:07 -0800752LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl/intl /
Dirk Dougherty289ad992013-01-28 15:43:49 -0800753
754LOCAL_MODULE := ds
755
756LOCAL_DROIDDOC_OPTIONS:= \
757 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Dougherty289ad992013-01-28 15:43:49 -0800758 -devsite \
759 -toroot / \
Scott Maine75cd4b2013-01-29 08:29:40 -0800760 -hdf android.whichdoc online \
761 -hdf devsite true
Dirk Dougherty289ad992013-01-28 15:43:49 -0800762
Scott Main4b7161c2013-01-29 14:20:13 -0800763LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
Dirk Dougherty289ad992013-01-28 15:43:49 -0800764
765include $(BUILD_DROIDDOC)
766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800767# ==== docs that have all of the stuff that's @hidden =======================
768include $(CLEAR_VARS)
769
770LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
771LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
Jeff Brown5aa90642013-07-17 20:44:57 -0700772LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
774LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
775LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
Ying Wang65ee22a2011-05-17 13:12:42 -0700776LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
Joe Onoratod20e5d02010-09-16 11:56:03 -0400777LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800778
779LOCAL_MODULE := hidden
780LOCAL_DROIDDOC_OPTIONS:=\
781 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
Dirk Dougherty2053f912010-08-25 12:12:57 -0700782 -title "Android SDK - Including hidden APIs."
783# -hidden
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784
785LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786
787include $(BUILD_DROIDDOC)
788
789# Build ext.jar
790# ============================================================
791
David Deephanphongs62f2ada2010-10-19 14:54:05 -0700792# NOTICE notes for non-obvious sections
793# apache-http - covered by the Apache Commons section.
794
795
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796ext_dirs := \
Chung-yih Wang2d942312010-08-05 12:17:37 +0800797 ../../external/nist-sip/java \
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798 ../../external/apache-http/src \
Bai Taoef4fd8e2010-06-07 10:25:53 +0800799 ../../external/tagsoup/src \
800 ../../external/libphonenumber/java/src
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800801
802ext_src_files := $(call all-java-files-under,$(ext_dirs))
803
Bai Taoef4fd8e2010-06-07 10:25:53 +0800804ext_res_dirs := \
805 ../../external/libphonenumber/java/src
806
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807# ==== the library =========================================
808include $(CLEAR_VARS)
809
810LOCAL_SRC_FILES := $(ext_src_files)
811
812LOCAL_NO_STANDARD_LIBRARIES := true
813LOCAL_JAVA_LIBRARIES := core
Bai Taoef4fd8e2010-06-07 10:25:53 +0800814LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
Jesse Wilsona1459562010-09-16 17:50:43 -0700815LOCAL_MODULE_TAGS := optional
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816LOCAL_MODULE := ext
817
Brian Carlstrom08065b92011-04-01 15:49:41 -0700818LOCAL_DX_FLAGS := --core-library
819
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820include $(BUILD_JAVA_LIBRARY)
821
822
823# Include subdirectory makefiles
824# ============================================================
825
826# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
827# team really wants is to build the stuff defined by this makefile.
828ifeq (,$(ONE_SHOT_MAKEFILE))
829include $(call first-makefiles-under,$(LOCAL_PATH))
830endif
Mike Lockwood35a42e02013-09-30 16:35:37 -0700831
832endif # ANDROID_BUILD_EMBEDDED