The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | LOCAL_PATH := $(call my-dir) |
| 17 | |
| 18 | # We have a special case here where we build the library's resources |
| 19 | # independently from its code, so we need to find where the resource |
| 20 | # class source got placed in the course of building the resources. |
| 21 | # Thus, the magic here. |
| 22 | # Also, this module cannot depend directly on the R.java file; if it |
| 23 | # did, the PRIVATE_* vars for R.java wouldn't be guaranteed to be correct. |
| 24 | # Instead, it depends on the R.stamp file, which lists the corresponding |
| 25 | # R.java file as a prerequisite. |
| 26 | # TODO: find a more appropriate way to do this. |
Joe Onorato | 80a60ba | 2010-07-14 19:58:30 -0700 | [diff] [blame] | 27 | framework_res_source_path := APPS/framework-res_intermediates/src |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 29 | # 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 | # ============================================================ |
| 34 | include $(CLEAR_VARS) |
| 35 | |
| 36 | # FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk |
| 37 | LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS)) |
| 38 | |
Brad Fitzpatrick | a63730d | 2010-02-07 22:25:34 -0800 | [diff] [blame] | 39 | # EventLogTags files. |
Dan Egnor | 18e9396 | 2010-02-10 19:27:58 -0800 | [diff] [blame] | 40 | LOCAL_SRC_FILES += \ |
| 41 | core/java/android/content/EventLogTags.logtags \ |
Narayan Kamath | 6dabb63 | 2011-07-08 12:13:03 +0100 | [diff] [blame] | 42 | core/java/android/speech/tts/EventLogTags.logtags \ |
Dan Egnor | 18e9396 | 2010-02-10 19:27:58 -0800 | [diff] [blame] | 43 | core/java/android/webkit/EventLogTags.logtags \ |
Brad Fitzpatrick | a63730d | 2010-02-07 22:25:34 -0800 | [diff] [blame] | 44 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | ## READ ME: ######################################################## |
| 46 | ## |
Mike Lockwood | c1e8aa4 | 2009-04-06 10:52:24 -0700 | [diff] [blame] | 47 | ## When updating this list of aidl files, consider if that aidl is |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 48 | ## part of the SDK API. If it is, also add it to the list below that |
| 49 | ## is preprocessed and distributed with the SDK. This list should |
| 50 | ## not contain any aidl files for parcelables, but the one below should |
| 51 | ## if you intend for 3rd parties to be able to send those objects |
| 52 | ## across process boundaries. |
| 53 | ## |
| 54 | ## READ ME: ######################################################## |
| 55 | LOCAL_SRC_FILES += \ |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 56 | core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \ |
Svetoslav Ganov | 4213804 | 2012-03-20 11:51:39 -0700 | [diff] [blame] | 57 | core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \ |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 58 | core/java/android/accounts/IAccountManager.aidl \ |
| 59 | core/java/android/accounts/IAccountManagerResponse.aidl \ |
| 60 | core/java/android/accounts/IAccountAuthenticator.aidl \ |
| 61 | core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 62 | core/java/android/app/IActivityController.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | core/java/android/app/IActivityPendingResult.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 64 | core/java/android/app/IAlarmManager.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 65 | core/java/android/app/IBackupAgent.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 66 | core/java/android/app/IInstrumentationWatcher.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 67 | core/java/android/app/INotificationManager.aidl \ |
Jeff Sharkey | a462079 | 2011-05-20 15:29:23 -0700 | [diff] [blame] | 68 | core/java/android/app/IProcessObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 69 | core/java/android/app/ISearchManager.aidl \ |
Bjorn Bringert | 8d17f3f | 2009-06-05 13:22:28 +0100 | [diff] [blame] | 70 | core/java/android/app/ISearchManagerCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 71 | core/java/android/app/IServiceConnection.aidl \ |
Dianne Hackborn | 80a4af2 | 2012-08-27 19:18:31 -0700 | [diff] [blame] | 72 | core/java/android/app/IStopUserCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 73 | core/java/android/app/IThumbnailReceiver.aidl \ |
Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 74 | core/java/android/app/IThumbnailRetriever.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 75 | core/java/android/app/ITransientNotification.aidl \ |
Svetoslav Ganov | 80943d8 | 2013-01-02 10:25:37 -0800 | [diff] [blame] | 76 | core/java/android/app/IUiAutomationConnection.aidl \ |
Tobias Haamel | 27b28b3 | 2010-02-09 23:09:17 +0100 | [diff] [blame] | 77 | core/java/android/app/IUiModeManager.aidl \ |
Svetoslav Ganov | 80943d8 | 2013-01-02 10:25:37 -0800 | [diff] [blame] | 78 | core/java/android/app/IUserSwitchObserver.aidl \ |
Dianne Hackborn | 8cc6a50 | 2009-08-05 21:29:42 -0700 | [diff] [blame] | 79 | core/java/android/app/IWallpaperManager.aidl \ |
| 80 | core/java/android/app/IWallpaperManagerCallback.aidl \ |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 81 | core/java/android/app/admin/IDevicePolicyManager.aidl \ |
Christopher Tate | 4528186 | 2010-03-05 15:46:30 -0800 | [diff] [blame] | 82 | core/java/android/app/backup/IBackupManager.aidl \ |
Christopher Tate | 4a627c7 | 2011-04-01 14:43:32 -0700 | [diff] [blame] | 83 | core/java/android/app/backup/IFullBackupRestoreObserver.aidl \ |
Christopher Tate | 4528186 | 2010-03-05 15:46:30 -0800 | [diff] [blame] | 84 | core/java/android/app/backup/IRestoreObserver.aidl \ |
| 85 | core/java/android/app/backup/IRestoreSession.aidl \ |
Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 86 | core/java/android/bluetooth/IBluetooth.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 87 | core/java/android/bluetooth/IBluetoothA2dp.aidl \ |
Nick Pelly | 16fb88a | 2009-10-07 07:44:03 +0200 | [diff] [blame] | 88 | core/java/android/bluetooth/IBluetoothCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 89 | core/java/android/bluetooth/IBluetoothHeadset.aidl \ |
Matthew Xie | 3e8c82e | 2012-02-16 16:57:18 -0800 | [diff] [blame] | 90 | core/java/android/bluetooth/IBluetoothHeadsetPhone.aidl \ |
Matthew Xie | 13450df | 2012-03-22 17:18:37 -0700 | [diff] [blame] | 91 | core/java/android/bluetooth/IBluetoothHealth.aidl \ |
Jaikumar Ganesh | 2ea1e85 | 2011-04-01 16:33:09 -0700 | [diff] [blame] | 92 | core/java/android/bluetooth/IBluetoothHealthCallback.aidl \ |
Matthew Xie | bf246ef | 2012-03-21 23:15:06 -0700 | [diff] [blame] | 93 | core/java/android/bluetooth/IBluetoothInputDevice.aidl \ |
fredc | 0f42037 | 2012-04-12 00:02:00 -0700 | [diff] [blame] | 94 | core/java/android/bluetooth/IBluetoothPan.aidl \ |
| 95 | core/java/android/bluetooth/IBluetoothManager.aidl \ |
| 96 | core/java/android/bluetooth/IBluetoothManagerCallback.aidl \ |
Jiafa Liu | 3f41673 | 2009-07-02 16:36:02 +0800 | [diff] [blame] | 97 | core/java/android/bluetooth/IBluetoothPbap.aidl \ |
Matthew Xie | fe3807a | 2013-07-18 17:31:50 -0700 | [diff] [blame] | 98 | core/java/android/bluetooth/IBluetoothMap.aidl \ |
Jaikumar Ganesh | ef2cb7c | 2011-07-21 18:13:38 -0700 | [diff] [blame] | 99 | core/java/android/bluetooth/IBluetoothStateChangeCallback.aidl \ |
Ganesh Ganapathi Batta | 9908112 | 2013-02-05 15:28:33 -0800 | [diff] [blame] | 100 | core/java/android/bluetooth/IBluetoothGatt.aidl \ |
| 101 | core/java/android/bluetooth/IBluetoothGattCallback.aidl \ |
| 102 | core/java/android/bluetooth/IBluetoothGattServerCallback.aidl \ |
Dianne Hackborn | 9f53119 | 2010-08-04 17:48:03 -0700 | [diff] [blame] | 103 | core/java/android/content/IClipboard.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 104 | core/java/android/content/IContentService.aidl \ |
Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 105 | core/java/android/content/IIntentReceiver.aidl \ |
| 106 | core/java/android/content/IIntentSender.aidl \ |
Dianne Hackborn | 9f53119 | 2010-08-04 17:48:03 -0700 | [diff] [blame] | 107 | core/java/android/content/IOnPrimaryClipChangedListener.aidl \ |
Matthew Williams | fa77418 | 2013-06-18 15:44:11 -0700 | [diff] [blame] | 108 | core/java/android/content/IAnonymousSyncAdapter.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 109 | core/java/android/content/ISyncAdapter.aidl \ |
| 110 | core/java/android/content/ISyncContext.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 111 | core/java/android/content/ISyncStatusObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 112 | core/java/android/content/pm/IPackageDataObserver.aidl \ |
| 113 | core/java/android/content/pm/IPackageDeleteObserver.aidl \ |
| 114 | core/java/android/content/pm/IPackageInstallObserver.aidl \ |
| 115 | core/java/android/content/pm/IPackageManager.aidl \ |
Suchi Amalapurapu | 8946dd3 | 2010-02-19 09:19:34 -0800 | [diff] [blame] | 116 | core/java/android/content/pm/IPackageMoveObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 117 | core/java/android/content/pm/IPackageStatsObserver.aidl \ |
| 118 | core/java/android/database/IContentObserver.aidl \ |
Igor Murashkin | 4491d68 | 2013-05-31 16:43:48 -0700 | [diff] [blame] | 119 | core/java/android/hardware/ICameraService.aidl \ |
| 120 | core/java/android/hardware/ICameraServiceListener.aidl \ |
| 121 | core/java/android/hardware/ICamera.aidl \ |
| 122 | core/java/android/hardware/ICameraClient.aidl \ |
| 123 | core/java/android/hardware/IProCameraUser.aidl \ |
| 124 | core/java/android/hardware/IProCameraCallbacks.aidl \ |
Eino-Ville Talvala | 2f1a2e4 | 2013-07-25 17:12:05 -0700 | [diff] [blame] | 125 | core/java/android/hardware/camera2/ICameraDeviceUser.aidl \ |
| 126 | core/java/android/hardware/camera2/ICameraDeviceCallbacks.aidl \ |
Mike Lockwood | b01e8bf | 2011-08-29 20:11:07 -0400 | [diff] [blame] | 127 | core/java/android/hardware/ISerialManager.aidl \ |
Jeff Brown | fa25bf5 | 2012-07-23 19:26:30 -0700 | [diff] [blame] | 128 | core/java/android/hardware/display/IDisplayManager.aidl \ |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 129 | core/java/android/hardware/display/IDisplayManagerCallback.aidl \ |
Jeff Brown | 4532e61 | 2012-04-05 14:27:12 -0700 | [diff] [blame] | 130 | core/java/android/hardware/input/IInputManager.aidl \ |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 131 | core/java/android/hardware/input/IInputDevicesChangedListener.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 132 | core/java/android/hardware/location/IFusedLocationHardware.aidl \ |
| 133 | core/java/android/hardware/location/IFusedLocationHardwareSink.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 134 | core/java/android/hardware/location/IGeofenceHardware.aidl \ |
| 135 | core/java/android/hardware/location/IGeofenceHardwareCallback.aidl \ |
Jaikumar Ganesh | da65089 | 2013-04-17 12:19:10 -0700 | [diff] [blame] | 136 | core/java/android/hardware/location/IGeofenceHardwareMonitorCallback.aidl \ |
Mike Lockwood | c4308f0 | 2011-03-01 08:04:54 -0800 | [diff] [blame] | 137 | core/java/android/hardware/usb/IUsbManager.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 138 | core/java/android/net/IConnectivityManager.aidl \ |
San Mehat | 4d02d00 | 2010-01-22 16:07:46 -0800 | [diff] [blame] | 139 | core/java/android/net/INetworkManagementEventObserver.aidl \ |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 140 | core/java/android/net/INetworkPolicyListener.aidl \ |
Jeff Sharkey | d5cdd59 | 2011-05-03 20:27:17 -0700 | [diff] [blame] | 141 | core/java/android/net/INetworkPolicyManager.aidl \ |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 142 | core/java/android/net/INetworkStatsService.aidl \ |
Jeff Sharkey | b52e3e5 | 2012-04-06 11:12:08 -0700 | [diff] [blame] | 143 | core/java/android/net/INetworkStatsSession.aidl \ |
Irfan Sheriff | 7d024d3 | 2012-03-22 17:01:39 -0700 | [diff] [blame] | 144 | core/java/android/net/nsd/INsdManager.aidl \ |
Jason parks | 0142536 | 2011-05-24 02:57:37 -0700 | [diff] [blame] | 145 | core/java/android/nfc/INdefPushCallback.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 146 | core/java/android/nfc/INfcAdapter.aidl \ |
Nick Pelly | 367f41f | 2011-03-08 11:43:30 -0800 | [diff] [blame] | 147 | core/java/android/nfc/INfcAdapterExtras.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 148 | core/java/android/nfc/INfcTag.aidl \ |
Martijn Coenen | a739788 | 2013-07-30 20:07:47 -0700 | [diff] [blame] | 149 | core/java/android/nfc/INfcCardEmulation.aidl \ |
Todd Poynor | a9de346 | 2013-05-22 18:53:29 -0700 | [diff] [blame] | 150 | core/java/android/os/IBatteryPropertiesListener.aidl \ |
| 151 | core/java/android/os/IBatteryPropertiesRegistrar.aidl \ |
Jeff Brown | a7771df | 2012-05-07 20:06:46 -0700 | [diff] [blame] | 152 | core/java/android/os/ICancellationSignal.aidl \ |
Mike Lockwood | eb9cbb8 | 2010-05-17 17:27:30 -0400 | [diff] [blame] | 153 | core/java/android/os/IHardwareService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 154 | core/java/android/os/IMessenger.aidl \ |
San Mehat | 873f214 | 2010-01-14 10:25:07 -0800 | [diff] [blame] | 155 | core/java/android/os/INetworkManagementService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 156 | core/java/android/os/IPermissionController.aidl \ |
| 157 | core/java/android/os/IPowerManager.aidl \ |
Svetoslav Ganov | 8643aa0 | 2011-04-20 12:12:33 -0700 | [diff] [blame] | 158 | core/java/android/os/IRemoteCallback.aidl \ |
Glenn Kasten | 07b0465 | 2012-04-23 15:00:43 -0700 | [diff] [blame] | 159 | core/java/android/os/ISchedulingPolicyService.aidl \ |
Christopher Tate | 8662cab5 | 2012-02-23 14:59:36 -0800 | [diff] [blame] | 160 | core/java/android/os/IUpdateLock.aidl \ |
Dianne Hackborn | e3f23a3 | 2013-03-01 13:25:35 -0800 | [diff] [blame] | 161 | core/java/android/os/IUserManager.aidl \ |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 162 | core/java/android/os/IVibratorService.aidl \ |
Daniel Sandler | 5feceeb | 2013-03-22 18:29:23 -0700 | [diff] [blame] | 163 | core/java/android/service/notification/INotificationListener.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 164 | core/java/android/print/ILayoutResultCallback.aidl \ |
Svetoslav Ganov | 798bed6 | 2013-08-11 12:29:39 -0700 | [diff] [blame] | 165 | core/java/android/print/IPrinterDiscoverySessionController.aidl \ |
| 166 | core/java/android/print/IPrinterDiscoverySessionObserver.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 167 | core/java/android/print/IPrintDocumentAdapter.aidl \ |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 168 | core/java/android/print/IPrintClient.aidl \ |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 169 | core/java/android/print/IPrintManager.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 170 | core/java/android/print/IPrintSpooler.aidl \ |
| 171 | core/java/android/print/IPrintSpoolerCallbacks.aidl \ |
| 172 | core/java/android/print/IPrintSpoolerClient.aidl \ |
| 173 | core/java/android/print/IWriteResultCallback.aidl \ |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 174 | core/java/android/printservice/IPrintService.aidl \ |
| 175 | core/java/android/printservice/IPrintServiceClient.aidl \ |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 176 | core/java/android/service/dreams/IDreamManager.aidl \ |
| 177 | core/java/android/service/dreams/IDreamService.aidl \ |
Svetoslav Ganov | 8643aa0 | 2011-04-20 12:12:33 -0700 | [diff] [blame] | 178 | core/java/android/service/wallpaper/IWallpaperConnection.aidl \ |
| 179 | core/java/android/service/wallpaper/IWallpaperEngine.aidl \ |
| 180 | core/java/android/service/wallpaper/IWallpaperService.aidl \ |
| 181 | core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\ |
| 182 | core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\ |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 183 | core/java/android/view/accessibility/IAccessibilityManager.aidl \ |
| 184 | core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 185 | core/java/android/view/IApplicationToken.aidl \ |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 186 | core/java/android/view/IAssetAtlas.aidl \ |
Svetoslav Ganov | 545252f | 2012-12-10 18:29:24 -0800 | [diff] [blame] | 187 | core/java/android/view/IMagnificationCallbacks.aidl \ |
Svetoslav Ganov | c9c9a48 | 2012-07-16 08:46:07 -0700 | [diff] [blame] | 188 | core/java/android/view/IInputFilter.aidl \ |
| 189 | core/java/android/view/IInputFilterHost.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 190 | core/java/android/view/IOnKeyguardExitResult.aidl \ |
| 191 | core/java/android/view/IRotationWatcher.aidl \ |
| 192 | core/java/android/view/IWindow.aidl \ |
Dianne Hackborn | e3f23a3 | 2013-03-01 13:25:35 -0800 | [diff] [blame] | 193 | core/java/android/view/IWindowFocusObserver.aidl \ |
| 194 | core/java/android/view/IWindowId.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 195 | core/java/android/view/IWindowManager.aidl \ |
| 196 | core/java/android/view/IWindowSession.aidl \ |
Alex Gruenstein | 361ec77 | 2009-09-15 11:19:58 -0700 | [diff] [blame] | 197 | core/java/android/speech/IRecognitionListener.aidl \ |
| 198 | core/java/android/speech/IRecognitionService.aidl \ |
Bjorn Bringert | 50e657b | 2011-03-08 16:00:40 +0000 | [diff] [blame] | 199 | core/java/android/speech/tts/ITextToSpeechCallback.aidl \ |
| 200 | core/java/android/speech/tts/ITextToSpeechService.aidl \ |
Dianne Hackborn | c229302 | 2013-02-06 23:14:49 -0800 | [diff] [blame] | 201 | core/java/com/android/internal/app/IAppOpsCallback.aidl \ |
Dianne Hackborn | a06de0f | 2012-12-11 16:34:47 -0800 | [diff] [blame] | 202 | core/java/com/android/internal/app/IAppOpsService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 203 | core/java/com/android/internal/app/IBatteryStats.aidl \ |
Dianne Hackborn | 23fb6e8 | 2013-08-07 10:08:22 -0700 | [diff] [blame] | 204 | core/java/com/android/internal/app/IProcessStats.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 205 | core/java/com/android/internal/app/IUsageStats.aidl \ |
Suchi Amalapurapu | c028be4 | 2010-01-25 12:19:12 -0800 | [diff] [blame] | 206 | core/java/com/android/internal/app/IMediaContainerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 207 | core/java/com/android/internal/appwidget/IAppWidgetService.aidl \ |
| 208 | core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \ |
Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 209 | core/java/com/android/internal/backup/IBackupTransport.aidl \ |
Christopher Tate | 46cc43c | 2013-02-19 14:08:59 -0800 | [diff] [blame] | 210 | core/java/com/android/internal/backup/IObbBackupService.aidl \ |
Jim Miller | 6edf263 | 2011-09-05 16:03:14 -0700 | [diff] [blame] | 211 | core/java/com/android/internal/policy/IFaceLockCallback.aidl \ |
| 212 | core/java/com/android/internal/policy/IFaceLockInterface.aidl \ |
Jim Miller | 2519057 | 2013-02-28 17:36:24 -0800 | [diff] [blame] | 213 | core/java/com/android/internal/policy/IKeyguardShowCallback.aidl \ |
| 214 | core/java/com/android/internal/policy/IKeyguardExitCallback.aidl \ |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 215 | core/java/com/android/internal/policy/IKeyguardService.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 216 | core/java/com/android/internal/os/IDropBoxManagerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 217 | core/java/com/android/internal/os/IResultReceiver.aidl \ |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 218 | core/java/com/android/internal/statusbar/IStatusBar.aidl \ |
| 219 | core/java/com/android/internal/statusbar/IStatusBarService.aidl \ |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 220 | core/java/com/android/internal/textservice/ISpellCheckerService.aidl \ |
| 221 | core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \ |
| 222 | core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \ |
| 223 | core/java/com/android/internal/textservice/ITextServicesManager.aidl \ |
| 224 | core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 225 | core/java/com/android/internal/view/IInputContext.aidl \ |
| 226 | core/java/com/android/internal/view/IInputContextCallback.aidl \ |
| 227 | core/java/com/android/internal/view/IInputMethod.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 228 | core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 229 | core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 230 | core/java/com/android/internal/view/IInputMethodSession.aidl \ |
Michael Wright | 52a5352 | 2013-03-14 10:59:38 -0700 | [diff] [blame] | 231 | core/java/com/android/internal/view/IInputSessionCallback.aidl \ |
Amith Yamasani | 52c489c | 2012-03-28 11:42:42 -0700 | [diff] [blame] | 232 | core/java/com/android/internal/widget/ILockSettings.aidl \ |
Winson Chung | 499cb9f | 2010-07-16 11:18:17 -0700 | [diff] [blame] | 233 | core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \ |
Winson Chung | 81f39eb | 2011-01-11 18:05:01 -0800 | [diff] [blame] | 234 | core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \ |
Brian Carlstrom | 93201f5 | 2011-06-09 15:05:35 -0700 | [diff] [blame] | 235 | keystore/java/android/security/IKeyChainAliasCallback.aidl \ |
Brian Carlstrom | b9a07c1 | 2011-04-11 09:03:51 -0700 | [diff] [blame] | 236 | keystore/java/android/security/IKeyChainService.aidl \ |
Bai Tao | a58a875 | 2010-07-13 15:32:16 +0800 | [diff] [blame] | 237 | location/java/android/location/ICountryDetector.aidl \ |
| 238 | location/java/android/location/ICountryListener.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 239 | location/java/android/location/IFusedProvider.aidl \ |
Mike Lockwood | a55c321 | 2009-04-15 11:10:11 -0400 | [diff] [blame] | 240 | location/java/android/location/IGeocodeProvider.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 241 | location/java/android/location/IGeofenceProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | location/java/android/location/IGpsStatusListener.aidl \ |
Mike Lockwood | 15e3d0f | 2009-05-01 07:53:28 -0400 | [diff] [blame] | 243 | location/java/android/location/IGpsStatusProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 244 | location/java/android/location/ILocationListener.aidl \ |
| 245 | location/java/android/location/ILocationManager.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 246 | location/java/android/location/IFusedGeofenceHardware.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 247 | location/java/android/location/IGpsGeofenceHardware.aidl \ |
Danke Xie | 22d1f9f | 2009-08-18 18:28:45 -0400 | [diff] [blame] | 248 | location/java/android/location/INetInitiatedListener.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 249 | location/java/com/android/internal/location/ILocationProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 250 | media/java/android/media/IAudioService.aidl \ |
Jean-Michel Trivi | d5176cf | 2010-01-28 11:56:42 -0800 | [diff] [blame] | 251 | media/java/android/media/IAudioFocusDispatcher.aidl \ |
Jean-Michel Trivi | 1357012 | 2012-06-19 14:03:09 -0700 | [diff] [blame] | 252 | media/java/android/media/IAudioRoutesObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 253 | media/java/android/media/IMediaScannerListener.aidl \ |
| 254 | media/java/android/media/IMediaScannerService.aidl \ |
Jean-Michel Trivi | 4426e42 | 2011-08-18 19:16:47 -0700 | [diff] [blame] | 255 | media/java/android/media/IRemoteControlClient.aidl \ |
| 256 | media/java/android/media/IRemoteControlDisplay.aidl \ |
Jean-Michel Trivi | 1357012 | 2012-06-19 14:03:09 -0700 | [diff] [blame] | 257 | media/java/android/media/IRemoteVolumeObserver.aidl \ |
Jeff Sharkey | 098d580 | 2012-04-26 17:30:34 -0700 | [diff] [blame] | 258 | media/java/android/media/IRingtonePlayer.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 259 | telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ |
| 260 | telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
| 261 | telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
Wink Saville | 5a72553 | 2013-02-07 17:03:05 -0800 | [diff] [blame] | 262 | telephony/java/com/android/internal/telephony/ISms.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 263 | telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ |
noda | 7640caa | 2010-08-20 08:10:00 +0900 | [diff] [blame] | 264 | telephony/java/com/android/internal/telephony/IWapPushManager.aidl \ |
John Wang | e91bc68 | 2009-03-27 18:24:06 -0700 | [diff] [blame] | 265 | wifi/java/android/net/wifi/IWifiManager.aidl \ |
Jason Monk | 602b232 | 2013-07-03 17:04:33 -0400 | [diff] [blame] | 266 | wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \ |
| 267 | packages/services/Proxy/com/android/net/IProxyService.aidl \ |
Doug Zongker | 45e6dbf | 2009-12-08 12:47:12 -0800 | [diff] [blame] | 268 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 269 | # FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk |
| 270 | LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 271 | |
| 272 | LOCAL_INTERMEDIATE_SOURCES := \ |
Joe Onorato | 80a60ba | 2010-07-14 19:58:30 -0700 | [diff] [blame] | 273 | $(framework_res_source_path)/android/R.java \ |
| 274 | $(framework_res_source_path)/android/Manifest.java \ |
| 275 | $(framework_res_source_path)/com/android/internal/R.java |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 276 | |
| 277 | LOCAL_NO_STANDARD_LIBRARIES := true |
Kenny Root | 12e7522 | 2013-04-23 22:34:24 -0700 | [diff] [blame] | 278 | LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt core core-junit ext okhttp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 279 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 280 | LOCAL_MODULE := framework-base |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 281 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 282 | LOCAL_JAR_EXCLUDE_FILES := none |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 283 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 284 | include $(BUILD_STATIC_JAVA_LIBRARY) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 285 | |
| 286 | # Make sure that R.java and Manifest.java are built before we build |
| 287 | # the source for this library. |
| 288 | framework_res_R_stamp := \ |
| 289 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp |
| 290 | $(full_classes_compiled_jar): $(framework_res_R_stamp) |
| 291 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 292 | # Build part 1 of the framework library. |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 293 | # ============================================================ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 294 | include $(CLEAR_VARS) |
| 295 | |
| 296 | LOCAL_MODULE := framework |
| 297 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 298 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 299 | LOCAL_STATIC_JAVA_LIBRARIES := framework-base |
| 300 | LOCAL_DX_FLAGS := --core-library |
| 301 | |
| 302 | # Packages to include, use \* wildcard to include descendants. |
| 303 | LOCAL_JAR_PACKAGES := android\* |
| 304 | |
| 305 | # List of classes and interfaces which should be loaded by the Zygote. |
| 306 | LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes |
| 307 | |
| 308 | include $(BUILD_JAVA_LIBRARY) |
| 309 | framework_module := $(LOCAL_INSTALLED_MODULE) |
| 310 | |
| 311 | # Build part 2 of the framework library. |
| 312 | # ============================================================ |
| 313 | include $(CLEAR_VARS) |
| 314 | |
| 315 | LOCAL_MODULE := framework2 |
| 316 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 317 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 318 | LOCAL_STATIC_JAVA_LIBRARIES := framework-base |
| 319 | LOCAL_DX_FLAGS := --core-library |
| 320 | |
| 321 | # Packages to include, use \* wildcard to include descendants. |
| 322 | LOCAL_JAR_PACKAGES := com\* javax\* |
| 323 | |
| 324 | include $(BUILD_JAVA_LIBRARY) |
| 325 | framework2_module := $(LOCAL_INSTALLED_MODULE) |
| 326 | |
| 327 | # Make sure that all framework modules are installed when framework is. |
| 328 | # ============================================================ |
| 329 | $(framework_module): | $(dir $(framework_module))framework-res.apk |
| 330 | $(framework_module): | $(dir $(framework_module))framework2.jar |
| 331 | |
| 332 | framework_built := $(call java-lib-deps,framework framework2) |
| 333 | |
| 334 | # Copy AIDL files to be preprocessed and included in the SDK, |
| 335 | # specified relative to the root of the build tree. |
| 336 | # ============================================================ |
| 337 | include $(CLEAR_VARS) |
| 338 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 339 | aidl_files := \ |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 340 | frameworks/base/core/java/android/accounts/IAccountManager.aidl \ |
| 341 | frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \ |
| 342 | frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \ |
| 343 | frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 344 | frameworks/base/core/java/android/app/Notification.aidl \ |
| 345 | frameworks/base/core/java/android/app/PendingIntent.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 346 | frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \ |
Nick Pelly | 459ba86 | 2009-11-04 17:23:55 -0800 | [diff] [blame] | 347 | frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \ |
Jaikumar Ganesh | 2ea1e85 | 2011-04-01 16:33:09 -0700 | [diff] [blame] | 348 | frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 349 | frameworks/base/core/java/android/content/ComponentName.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 350 | frameworks/base/core/java/android/content/ContentValues.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 351 | frameworks/base/core/java/android/content/Intent.aidl \ |
Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 352 | frameworks/base/core/java/android/content/IntentSender.aidl \ |
Fred Quintana | c5d1c6d | 2010-01-27 12:17:49 -0800 | [diff] [blame] | 353 | frameworks/base/core/java/android/content/PeriodicSync.aidl \ |
Matthew Williams | fa77418 | 2013-06-18 15:44:11 -0700 | [diff] [blame] | 354 | frameworks/base/core/java/android/content/SyncRequest.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 355 | frameworks/base/core/java/android/content/SyncStats.aidl \ |
| 356 | frameworks/base/core/java/android/content/res/Configuration.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 357 | frameworks/base/core/java/android/database/CursorWindow.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 358 | frameworks/base/core/java/android/net/Uri.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 359 | frameworks/base/core/java/android/nfc/NdefMessage.aidl \ |
| 360 | frameworks/base/core/java/android/nfc/NdefRecord.aidl \ |
| 361 | frameworks/base/core/java/android/nfc/Tag.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 362 | frameworks/base/core/java/android/os/Bundle.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 363 | frameworks/base/core/java/android/os/DropBoxManager.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 364 | frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \ |
Nick Pelly | aef439e | 2009-09-28 12:33:17 -0700 | [diff] [blame] | 365 | frameworks/base/core/java/android/os/ParcelUuid.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 366 | frameworks/base/core/java/android/view/KeyEvent.aidl \ |
| 367 | frameworks/base/core/java/android/view/MotionEvent.aidl \ |
| 368 | frameworks/base/core/java/android/view/Surface.aidl \ |
| 369 | frameworks/base/core/java/android/view/WindowManager.aidl \ |
| 370 | frameworks/base/core/java/android/widget/RemoteViews.aidl \ |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 371 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \ |
| 372 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \ |
| 373 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \ |
| 374 | frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \ |
| 375 | frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 376 | frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \ |
| 377 | frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 378 | frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 379 | frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 380 | frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \ |
| 381 | frameworks/base/graphics/java/android/graphics/Bitmap.aidl \ |
| 382 | frameworks/base/graphics/java/android/graphics/Rect.aidl \ |
| 383 | frameworks/base/graphics/java/android/graphics/Region.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 384 | frameworks/base/location/java/android/location/Criteria.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 385 | frameworks/base/location/java/android/location/Geofence.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 386 | frameworks/base/location/java/android/location/Location.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 387 | frameworks/base/location/java/android/location/LocationRequest.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 388 | frameworks/base/location/java/android/location/FusedBatchOptions.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 389 | frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \ |
| 390 | frameworks/base/location/java/com/android/internal/location/ProviderRequest.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 391 | frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ |
| 392 | frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
Raphael | d8b51a2 | 2009-06-08 22:05:22 -0700 | [diff] [blame] | 393 | frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 394 | |
| 395 | gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl |
| 396 | $(gen): PRIVATE_SRC_FILES := $(aidl_files) |
| 397 | ALL_SDK_FILES += $(gen) |
| 398 | $(gen): $(aidl_files) | $(AIDL) |
| 399 | @echo Aidl Preprocess: $@ |
| 400 | $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES) |
| 401 | |
| 402 | # the documentation |
| 403 | # ============================================================ |
| 404 | |
| 405 | # TODO: deal with com/google/android/googleapps |
| 406 | packages_to_document := \ |
| 407 | android \ |
| 408 | javax/microedition/khronos |
| 409 | |
| 410 | # Search through the base framework dirs for these packages. |
| 411 | # The result will be relative to frameworks/base. |
| 412 | fwbase_dirs_to_document := \ |
Brett Chabot | e70f61b | 2010-02-19 10:49:27 -0800 | [diff] [blame] | 413 | test-runner/src \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 414 | $(patsubst $(LOCAL_PATH)/%,%, \ |
| 415 | $(wildcard \ |
| 416 | $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \ |
| 417 | $(addprefix $(dir)/, $(packages_to_document)) \ |
| 418 | ) \ |
| 419 | ) \ |
| 420 | ) |
| 421 | |
Brian Carlstrom | cf9a013 | 2011-01-05 17:52:36 -0800 | [diff] [blame] | 422 | # include definition of libcore_to_document |
Brett Chabot | 571db32 | 2012-04-16 10:13:59 -0700 | [diff] [blame] | 423 | include libcore/Docs.mk |
| 424 | |
| 425 | # include definition of junit_to_document |
| 426 | include external/junit/Common.mk |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 427 | |
| 428 | non_base_dirs := \ |
Wink Saville | a639b31 | 2012-07-10 12:37:54 -0700 | [diff] [blame] | 429 | ../../external/apache-http/src/org/apache/http \ |
| 430 | ../opt/telephony/src/java/android/telephony \ |
| 431 | ../opt/telephony/src/java/android/telephony/gsm \ |
Wink Saville | cbb2a2a | 2013-01-28 15:27:47 -0800 | [diff] [blame] | 432 | ../opt/net/voip/src/java/android/net/rtp \ |
| 433 | ../opt/net/voip/src/java/android/net/sip |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 434 | |
| 435 | # These are relative to frameworks/base |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 436 | dirs_to_check_apis := \ |
| 437 | $(fwbase_dirs_to_document) \ |
Brian Carlstrom | a9602db | 2011-03-24 14:14:28 -0700 | [diff] [blame] | 438 | $(non_base_dirs) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 439 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 440 | # These are relative to frameworks/base |
| 441 | # FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk |
| 442 | dirs_to_document := \ |
| 443 | $(dirs_to_check_apis) \ |
| 444 | $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS)) |
| 445 | |
| 446 | # These are relative to frameworks/base |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 447 | html_dirs := \ |
| 448 | $(FRAMEWORKS_BASE_SUBDIRS) \ |
| 449 | $(non_base_dirs) |
| 450 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 451 | # Common sources for doc check and api check |
| 452 | common_src_files := \ |
| 453 | $(call find-other-html-files, $(html_dirs)) \ |
Brett Chabot | 571db32 | 2012-04-16 10:13:59 -0700 | [diff] [blame] | 454 | $(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore)) \ |
| 455 | $(addprefix ../../external/junit/, $(call junit_to_document, $(LOCAL_PATH)/../../external/junit)) |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 456 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 457 | # These are relative to frameworks/base |
| 458 | framework_docs_LOCAL_SRC_FILES := \ |
| 459 | $(call find-other-java-files, $(dirs_to_document)) \ |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 460 | $(common_src_files) |
| 461 | |
| 462 | # These are relative to frameworks/base |
| 463 | framework_docs_LOCAL_API_CHECK_SRC_FILES := \ |
| 464 | $(call find-other-java-files, $(dirs_to_check_apis)) \ |
| 465 | $(common_src_files) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 466 | |
Joe Onorato | 626db91 | 2010-05-17 18:21:44 -0700 | [diff] [blame] | 467 | # This is used by ide.mk as the list of source files that are |
| 468 | # always included. |
| 469 | INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document)) |
| 470 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 471 | framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \ |
| 472 | $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 473 | |
| 474 | framework_docs_LOCAL_INTERMEDIATE_SOURCES := \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 475 | $(framework_res_source_path)/android/R.java \ |
| 476 | $(framework_res_source_path)/android/Manifest.java \ |
| 477 | $(framework_res_source_path)/com/android/internal/R.java |
| 478 | |
| 479 | framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES := \ |
| 480 | bouncycastle \ |
Kenny Root | e9ae682 | 2013-04-29 23:09:03 -0700 | [diff] [blame] | 481 | conscrypt \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 482 | core \ |
Jeff Brown | eb6403e | 2013-04-26 12:02:36 -0700 | [diff] [blame] | 483 | okhttp \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 484 | ext \ |
| 485 | framework \ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 486 | framework2 \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 487 | mms-common \ |
| 488 | telephony-common \ |
| 489 | voip-common |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 490 | |
| 491 | framework_docs_LOCAL_JAVA_LIBRARIES := \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 492 | $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) \ |
| 493 | $(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 494 | |
| 495 | framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
Joe Onorato | 3fec2bf | 2010-08-27 15:05:39 -0400 | [diff] [blame] | 496 | framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html |
Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 497 | # The since flag (-since N.xml API_LEVEL) is used to add API Level information |
| 498 | # to the reference documentation. Must be in order of oldest to newest. |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 499 | framework_docs_LOCAL_DROIDDOC_OPTIONS := \ |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 500 | -knowntags ./frameworks/base/docs/knowntags.txt \ |
Ying Wang | f74f0de | 2012-12-04 15:12:49 -0800 | [diff] [blame] | 501 | -since $(SRC_API_DIR)/1.xml 1 \ |
| 502 | -since $(SRC_API_DIR)/2.xml 2 \ |
| 503 | -since $(SRC_API_DIR)/3.xml 3 \ |
| 504 | -since $(SRC_API_DIR)/4.xml 4 \ |
| 505 | -since $(SRC_API_DIR)/5.xml 5 \ |
| 506 | -since $(SRC_API_DIR)/6.xml 6 \ |
| 507 | -since $(SRC_API_DIR)/7.xml 7 \ |
| 508 | -since $(SRC_API_DIR)/8.xml 8 \ |
| 509 | -since $(SRC_API_DIR)/9.xml 9 \ |
| 510 | -since $(SRC_API_DIR)/10.xml 10 \ |
| 511 | -since $(SRC_API_DIR)/11.xml 11 \ |
| 512 | -since $(SRC_API_DIR)/12.xml 12 \ |
| 513 | -since $(SRC_API_DIR)/13.xml 13 \ |
| 514 | -since $(SRC_API_DIR)/14.txt 14 \ |
| 515 | -since $(SRC_API_DIR)/15.txt 15 \ |
| 516 | -since $(SRC_API_DIR)/16.txt 16 \ |
| 517 | -since $(SRC_API_DIR)/17.txt 17 \ |
Scott Main | 0d9e45a | 2013-04-11 11:37:29 -0700 | [diff] [blame] | 518 | -since $(SRC_API_DIR)/18.txt 18 \ |
Joe Onorato | 0ba4ac7 | 2010-09-16 15:42:20 -0400 | [diff] [blame] | 519 | -werror -hide 113 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 520 | -overview $(LOCAL_PATH)/core/java/overview.html |
| 521 | |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 522 | framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR:= \ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 523 | $(call intermediates-dir-for,JAVA_LIBRARIES,framework-base,,COMMON) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 524 | |
| 525 | framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= \ |
| 526 | $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR) \ |
Jeff Brown | ae1d6f2 | 2013-05-10 20:37:12 -0700 | [diff] [blame] | 527 | $(foreach lib,$(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES),$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)) \ |
| 528 | $(foreach lib,$(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES),$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib)-res,,COMMON)) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 529 | |
| 530 | framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \ |
| 531 | frameworks/base/docs/knowntags.txt |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 532 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 533 | sample_dir := development/samples |
| 534 | |
Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 535 | # the list here should match the list of samples included in the sdk samples package |
| 536 | # (see development/build/sdk.atree) |
Dirk Dougherty | 9cab5c0 | 2013-01-29 15:00:04 -0800 | [diff] [blame] | 537 | # remove htmlified samples for now -- samples are still available through the SDK |
| 538 | # web_docs_sample_code_flags := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 539 | -hdf android.hasSamples 1 \ |
Dirk Dougherty | 47ccfcb | 2010-11-24 16:17:52 -0800 | [diff] [blame] | 540 | -samplecode $(sample_dir)/AccelerometerPlay \ |
| 541 | resources/samples/AccelerometerPlay "Accelerometer Play" \ |
Roman Nurik | f4b2ba1 | 2011-09-30 15:48:34 -0700 | [diff] [blame] | 542 | -samplecode $(sample_dir)/ActionBarCompat \ |
| 543 | resources/samples/ActionBarCompat "Action Bar Compatibility" \ |
Scott Main | 49eb519 | 2011-10-14 01:24:57 -0700 | [diff] [blame] | 544 | -samplecode $(sample_dir)/AndroidBeamDemo \ |
Scott Main | 3087b94 | 2011-10-14 14:29:14 -0700 | [diff] [blame] | 545 | resources/samples/AndroidBeamDemo "Android Beam Demo" \ |
Dianne Hackborn | 2f04883 | 2011-06-16 13:31:57 -0700 | [diff] [blame] | 546 | -samplecode $(sample_dir)/ApiDemos \ |
Robert Ly | 3f9b644 | 2011-01-19 18:14:50 -0800 | [diff] [blame] | 547 | resources/samples/ApiDemos "API Demos" \ |
Dianne Hackborn | 2f04883 | 2011-06-16 13:31:57 -0700 | [diff] [blame] | 548 | -samplecode $(sample_dir)/Support4Demos \ |
| 549 | resources/samples/Support4Demos "API 4+ Support Demos" \ |
| 550 | -samplecode $(sample_dir)/Support13Demos \ |
| 551 | resources/samples/Support13Demos "API 13+ Support Demos" \ |
Christopher Tate | e779bdc | 2010-04-07 11:15:45 -0700 | [diff] [blame] | 552 | -samplecode $(sample_dir)/BackupRestore \ |
| 553 | resources/samples/BackupRestore "Backup and Restore" \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 554 | -samplecode $(sample_dir)/BluetoothChat \ |
| 555 | resources/samples/BluetoothChat "Bluetooth Chat" \ |
Fred Chung | 6cf8f73 | 2011-11-16 15:15:30 -0800 | [diff] [blame] | 556 | -samplecode $(sample_dir)/BluetoothHDP \ |
| 557 | resources/samples/BluetoothHDP "Bluetooth HDP Demo" \ |
Trevor Johns | 2187e240 | 2010-01-07 16:26:39 -0800 | [diff] [blame] | 558 | -samplecode $(sample_dir)/BusinessCard \ |
| 559 | resources/samples/BusinessCard "Business Card" \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 560 | -samplecode $(sample_dir)/ContactManager \ |
| 561 | resources/samples/ContactManager "Contact Manager" \ |
Roman Nurik | f4b2ba1 | 2011-09-30 15:48:34 -0700 | [diff] [blame] | 562 | -samplecode $(sample_dir)/CubeLiveWallpaper \ |
| 563 | resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 564 | -samplecode $(sample_dir)/Home \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 565 | resources/samples/Home "Home" \ |
Roman Nurik | f4b2ba1 | 2011-09-30 15:48:34 -0700 | [diff] [blame] | 566 | -samplecode $(sample_dir)/HoneycombGallery \ |
| 567 | resources/samples/HoneycombGallery "Honeycomb Gallery" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 568 | -samplecode $(sample_dir)/JetBoy \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 569 | resources/samples/JetBoy "JetBoy" \ |
Tony Chan | c95a74d | 2012-03-29 01:33:08 +0800 | [diff] [blame] | 570 | -samplecode $(sample_dir)/KeyChainDemo \ |
| 571 | resources/samples/KeyChainDemo "KeyChain Demo" \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 572 | -samplecode $(sample_dir)/LunarLander \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 573 | resources/samples/LunarLander "Lunar Lander" \ |
Scott Main | 3d672e1 | 2011-12-15 10:44:11 -0800 | [diff] [blame] | 574 | -samplecode $(sample_dir)/training/ads-and-ux \ |
| 575 | resources/samples/training/ads-and-ux "Mobile Advertisement Integration" \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 576 | -samplecode $(sample_dir)/MultiResolution \ |
| 577 | resources/samples/MultiResolution "Multiple Resolutions" \ |
Scott Main | 801fda5 | 2011-12-09 17:27:21 -0800 | [diff] [blame] | 578 | -samplecode $(sample_dir)/training/multiscreen/newsreader \ |
| 579 | resources/samples/newsreader "News Reader" \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 580 | -samplecode $(sample_dir)/NotePad \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 581 | resources/samples/NotePad "Note Pad" \ |
satok | 44619d3 | 2011-10-19 22:46:18 +0900 | [diff] [blame] | 582 | -samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \ |
Scott Main | 2323e9b | 2011-10-28 15:55:39 -0700 | [diff] [blame] | 583 | resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \ |
satok | 182e4ae | 2011-10-27 19:57:34 +0900 | [diff] [blame] | 584 | -samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \ |
Scott Main | 2323e9b | 2011-10-28 15:55:39 -0700 | [diff] [blame] | 585 | resources/samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \ |
Dianne Hackborn | fef42db | 2010-06-04 13:38:43 -0700 | [diff] [blame] | 586 | -samplecode $(sample_dir)/SampleSyncAdapter \ |
| 587 | resources/samples/SampleSyncAdapter "Sample Sync Adapter" \ |
Bruno Oliveira | 9e67587d | 2011-06-07 01:23:02 -0400 | [diff] [blame] | 588 | -samplecode $(sample_dir)/RandomMusicPlayer \ |
| 589 | resources/samples/RandomMusicPlayer "Random Music Player" \ |
Robert Ly | 44b362c | 2011-02-28 15:53:15 -0800 | [diff] [blame] | 590 | -samplecode $(sample_dir)/RenderScript \ |
| 591 | resources/samples/RenderScript "RenderScript" \ |
Scott Main | 689d16b | 2009-08-29 13:17:53 -0700 | [diff] [blame] | 592 | -samplecode $(sample_dir)/SearchableDictionary \ |
Scott Main | bf1d0b9 | 2010-05-07 15:08:36 -0700 | [diff] [blame] | 593 | resources/samples/SearchableDictionary "Searchable Dictionary v2" \ |
Alexander Lucas | a11c9e1 | 2010-11-02 22:26:11 -0700 | [diff] [blame] | 594 | -samplecode $(sample_dir)/SipDemo \ |
| 595 | resources/samples/SipDemo "SIP Demo" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 596 | -samplecode $(sample_dir)/Snake \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 597 | resources/samples/Snake "Snake" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 598 | -samplecode $(sample_dir)/SoftKeyboard \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 599 | resources/samples/SoftKeyboard "Soft Keyboard" \ |
Joe Malin | e52c4a7 | 2010-04-14 14:40:59 -0700 | [diff] [blame] | 600 | -samplecode $(sample_dir)/Spinner \ |
| 601 | resources/samples/Spinner "Spinner" \ |
| 602 | -samplecode $(sample_dir)/SpinnerTest \ |
| 603 | resources/samples/SpinnerTest "SpinnerTest" \ |
Adam Cohen | fca67c5 | 2011-02-10 18:57:45 -0800 | [diff] [blame] | 604 | -samplecode $(sample_dir)/StackWidget \ |
Scott Main | d873e66 | 2011-02-15 10:58:34 -0800 | [diff] [blame] | 605 | resources/samples/StackWidget "StackView Widget" \ |
Dirk Dougherty | b32c240 | 2010-05-08 21:22:11 -0700 | [diff] [blame] | 606 | -samplecode $(sample_dir)/TicTacToeLib \ |
| 607 | resources/samples/TicTacToeLib "TicTacToeLib" \ |
| 608 | -samplecode $(sample_dir)/TicTacToeMain \ |
| 609 | resources/samples/TicTacToeMain "TicTacToeMain" \ |
Fred Chung | 8e076fe | 2011-11-28 16:44:13 -0800 | [diff] [blame] | 610 | -samplecode $(sample_dir)/ToyVpn \ |
| 611 | resources/samples/ToyVpn "Toy VPN Client" \ |
Robert Ly | 8cdb2e2 | 2011-05-02 17:49:05 -0700 | [diff] [blame] | 612 | -samplecode $(sample_dir)/USB \ |
| 613 | resources/samples/USB "USB" \ |
Winson Chung | 06d2fa7 | 2011-02-10 19:11:33 -0800 | [diff] [blame] | 614 | -samplecode $(sample_dir)/WeatherListWidget \ |
Scott Main | d873e66 | 2011-02-15 10:58:34 -0800 | [diff] [blame] | 615 | resources/samples/WeatherListWidget "Weather List Widget" \ |
Anirudh Dewani | 5d0dbea | 2011-10-06 08:03:45 +0530 | [diff] [blame] | 616 | -samplecode $(sample_dir)/WiFiDirectDemo \ |
| 617 | resources/samples/WiFiDirectDemo "Wi-Fi Direct Demo" \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 618 | -samplecode $(sample_dir)/Wiktionary \ |
| 619 | resources/samples/Wiktionary "Wiktionary" \ |
| 620 | -samplecode $(sample_dir)/WiktionarySimple \ |
Mike LeBeau | 9c57aca | 2010-02-12 14:09:55 -0800 | [diff] [blame] | 621 | resources/samples/WiktionarySimple "Wiktionary (Simplified)" \ |
| 622 | -samplecode $(sample_dir)/VoiceRecognitionService \ |
Gilles Debunne | 3eb9b66 | 2010-06-23 16:53:35 -0700 | [diff] [blame] | 623 | resources/samples/VoiceRecognitionService "Voice Recognition Service" \ |
Debashish Chatterjee | acd6f5f | 2011-05-19 13:21:48 +0100 | [diff] [blame] | 624 | -samplecode $(sample_dir)/VoicemailProviderDemo \ |
| 625 | resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \ |
Gilles Debunne | 3eb9b66 | 2010-06-23 16:53:35 -0700 | [diff] [blame] | 626 | -samplecode $(sample_dir)/XmlAdapters \ |
Narayan Kamath | af1ad3c | 2011-06-23 10:43:27 +0100 | [diff] [blame] | 627 | resources/samples/XmlAdapters "XML Adapters" \ |
| 628 | -samplecode $(sample_dir)/TtsEngine \ |
Scott Main | aed4ced | 2011-12-15 10:25:41 -0800 | [diff] [blame] | 629 | resources/samples/TtsEngine "Text To Speech Engine" \ |
| 630 | -samplecode $(sample_dir)/training/device-management-policy \ |
| 631 | resources/samples/training/device-management-policy "Device Management Policy" |
| 632 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 633 | |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 634 | ## SDK version identifiers used in the published docs |
| 635 | # major[.minor] version for current SDK. (full releases only) |
Scott Main | ec6f327 | 2013-07-30 10:09:21 -0700 | [diff] [blame] | 636 | framework_docs_SDK_VERSION:=4.3 |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 637 | # release version (ie "Release x") (full releases only) |
Scott Main | 62e9701 | 2011-02-07 16:35:46 -0800 | [diff] [blame] | 638 | framework_docs_SDK_REL_ID:=1 |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 639 | |
| 640 | framework_docs_LOCAL_DROIDDOC_OPTIONS += \ |
| 641 | -hdf sdk.version $(framework_docs_SDK_VERSION) \ |
Scott Main | b402f11 | 2010-11-29 14:28:13 -0800 | [diff] [blame] | 642 | -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \ |
Scott Main | 62e9701 | 2011-02-07 16:35:46 -0800 | [diff] [blame] | 643 | -hdf sdk.preview 0 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 644 | |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 645 | # ==== the api stubs and current.xml =========================== |
| 646 | include $(CLEAR_VARS) |
| 647 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 648 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 649 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 650 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 651 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 652 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 653 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 654 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 655 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 656 | |
| 657 | LOCAL_MODULE := api-stubs |
| 658 | |
| 659 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 660 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 661 | -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \ |
Joe Onorato | 5e88ac7 | 2011-03-09 13:34:39 -0800 | [diff] [blame] | 662 | -api $(INTERNAL_PLATFORM_API_FILE) \ |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 663 | -nodocs |
| 664 | |
| 665 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 666 | |
Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 667 | LOCAL_UNINSTALLABLE_MODULE := true |
| 668 | |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 669 | include $(BUILD_DROIDDOC) |
| 670 | |
Ying Wang | 6806457 | 2010-05-07 15:00:10 -0700 | [diff] [blame] | 671 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. |
| 672 | $(full_target): $(framework_built) $(gen) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 673 | $(INTERNAL_PLATFORM_API_FILE): $(full_target) |
| 674 | $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE)) |
| 675 | |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 676 | # ==== check javadoc comments but don't generate docs ======== |
| 677 | include $(CLEAR_VARS) |
| 678 | |
| 679 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 680 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 681 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 682 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 683 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 684 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 685 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 686 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 687 | |
| 688 | LOCAL_MODULE := doc-comment-check |
| 689 | |
| 690 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 691 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 692 | -parsecomments |
| 693 | |
| 694 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 695 | |
Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 696 | LOCAL_UNINSTALLABLE_MODULE := true |
| 697 | |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 698 | include $(BUILD_DROIDDOC) |
| 699 | |
| 700 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. |
| 701 | $(full_target): $(framework_built) $(gen) |
| 702 | |
Ying Wang | 33a436d | 2012-09-27 17:09:53 -0700 | [diff] [blame] | 703 | # Run this for checkbuild |
| 704 | .PHONY: checkbuild |
| 705 | checkbuild: doc-comment-check-docs |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 706 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 707 | # ==== static html in the sdk ================================== |
| 708 | include $(CLEAR_VARS) |
| 709 | |
| 710 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 711 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 712 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 713 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 714 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 715 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 716 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 717 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 718 | |
| 719 | LOCAL_MODULE := offline-sdk |
| 720 | |
| 721 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 722 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Scott Main | 820a4e7 | 2009-11-19 20:19:49 -0800 | [diff] [blame] | 723 | $(web_docs_sample_code_flags) \ |
Scott Main | 0216946 | 2009-11-20 10:44:21 -0800 | [diff] [blame] | 724 | -offlinemode \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 725 | -title "Android SDK" \ |
| 726 | -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ |
| 727 | -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 728 | -sdkvalues $(OUT_DOCS) \ |
Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 729 | -hdf android.whichdoc offline |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 730 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 731 | |
| 732 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 733 | |
| 734 | include $(BUILD_DROIDDOC) |
| 735 | |
| 736 | static_doc_index_redirect := $(out_dir)/index.html |
| 737 | $(static_doc_index_redirect): \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 738 | $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 739 | $(hide) mkdir -p $(dir $@) |
| 740 | $(hide) $(ACP) $< $@ |
| 741 | |
| 742 | $(full_target): $(static_doc_index_redirect) |
| 743 | $(full_target): $(framework_built) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 744 | |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 745 | # ==== docs for the web (on the androiddevdocs app engine server) ======================= |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 746 | include $(CLEAR_VARS) |
| 747 | |
| 748 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 749 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 750 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) |
| 751 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 752 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 753 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 754 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 755 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 756 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 757 | LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /intl/ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 758 | |
| 759 | LOCAL_MODULE := online-sdk |
| 760 | |
| 761 | LOCAL_DROIDDOC_OPTIONS:= \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 762 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 763 | $(web_docs_sample_code_flags) \ |
| 764 | -toroot / \ |
Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 765 | -hdf android.whichdoc online \ |
| 766 | -hdf template.showLanguageMenu true |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 767 | |
| 768 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 769 | |
| 770 | include $(BUILD_DROIDDOC) |
| 771 | |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 772 | # ==== docs for the web (on the devsite app engine server) ======================= |
| 773 | include $(CLEAR_VARS) |
| 774 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 775 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 776 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) |
| 777 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 778 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 779 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 780 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 781 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
| 782 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
| 783 | # specify a second html input dir and an output path relative to OUT_DIR) |
| 784 | LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl / |
| 785 | |
| 786 | LOCAL_MODULE := ds |
| 787 | |
| 788 | LOCAL_DROIDDOC_OPTIONS:= \ |
| 789 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 790 | $(web_docs_sample_code_flags) \ |
| 791 | -devsite \ |
| 792 | -toroot / \ |
Scott Main | e75cd4b | 2013-01-29 08:29:40 -0800 | [diff] [blame] | 793 | -hdf android.whichdoc online \ |
| 794 | -hdf devsite true |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 795 | |
Scott Main | 4b7161c | 2013-01-29 14:20:13 -0800 | [diff] [blame] | 796 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 797 | |
| 798 | include $(BUILD_DROIDDOC) |
| 799 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 800 | # ==== docs that have all of the stuff that's @hidden ======================= |
| 801 | include $(CLEAR_VARS) |
| 802 | |
| 803 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 804 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 805 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 806 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 807 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 808 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
Ying Wang | 65ee22a | 2011-05-17 13:12:42 -0700 | [diff] [blame] | 809 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 810 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 811 | |
| 812 | LOCAL_MODULE := hidden |
| 813 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 814 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 815 | -title "Android SDK - Including hidden APIs." |
| 816 | # -hidden |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 817 | |
| 818 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 819 | |
| 820 | include $(BUILD_DROIDDOC) |
| 821 | |
| 822 | # Build ext.jar |
| 823 | # ============================================================ |
| 824 | |
David Deephanphongs | 62f2ada | 2010-10-19 14:54:05 -0700 | [diff] [blame] | 825 | # NOTICE notes for non-obvious sections |
| 826 | # apache-http - covered by the Apache Commons section. |
| 827 | |
| 828 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 829 | ext_dirs := \ |
Chung-yih Wang | 2d94231 | 2010-08-05 12:17:37 +0800 | [diff] [blame] | 830 | ../../external/nist-sip/java \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 831 | ../../external/apache-http/src \ |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 832 | ../../external/tagsoup/src \ |
| 833 | ../../external/libphonenumber/java/src |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 834 | |
| 835 | ext_src_files := $(call all-java-files-under,$(ext_dirs)) |
| 836 | |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 837 | ext_res_dirs := \ |
| 838 | ../../external/libphonenumber/java/src |
| 839 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 840 | # ==== the library ========================================= |
| 841 | include $(CLEAR_VARS) |
| 842 | |
| 843 | LOCAL_SRC_FILES := $(ext_src_files) |
| 844 | |
| 845 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 846 | LOCAL_JAVA_LIBRARIES := core |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 847 | LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs) |
Jesse Wilson | a145956 | 2010-09-16 17:50:43 -0700 | [diff] [blame] | 848 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 849 | LOCAL_MODULE := ext |
| 850 | |
Brian Carlstrom | 08065b9 | 2011-04-01 15:49:41 -0700 | [diff] [blame] | 851 | LOCAL_DX_FLAGS := --core-library |
| 852 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 853 | include $(BUILD_JAVA_LIBRARY) |
| 854 | |
| 855 | |
| 856 | # Include subdirectory makefiles |
| 857 | # ============================================================ |
| 858 | |
| 859 | # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework |
| 860 | # team really wants is to build the stuff defined by this makefile. |
| 861 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 862 | include $(call first-makefiles-under,$(LOCAL_PATH)) |
| 863 | endif |