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 \ |
Erik Gilling | 51e95df | 2013-06-26 11:06:51 -0700 | [diff] [blame] | 123 | core/java/android/hardware/IConsumerIrService.aidl \ |
Igor Murashkin | 4491d68 | 2013-05-31 16:43:48 -0700 | [diff] [blame] | 124 | core/java/android/hardware/IProCameraUser.aidl \ |
| 125 | core/java/android/hardware/IProCameraCallbacks.aidl \ |
Eino-Ville Talvala | 2f1a2e4 | 2013-07-25 17:12:05 -0700 | [diff] [blame] | 126 | core/java/android/hardware/camera2/ICameraDeviceUser.aidl \ |
| 127 | core/java/android/hardware/camera2/ICameraDeviceCallbacks.aidl \ |
Mike Lockwood | b01e8bf | 2011-08-29 20:11:07 -0400 | [diff] [blame] | 128 | core/java/android/hardware/ISerialManager.aidl \ |
Jeff Brown | fa25bf5 | 2012-07-23 19:26:30 -0700 | [diff] [blame] | 129 | core/java/android/hardware/display/IDisplayManager.aidl \ |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 130 | core/java/android/hardware/display/IDisplayManagerCallback.aidl \ |
Jeff Brown | 4532e61 | 2012-04-05 14:27:12 -0700 | [diff] [blame] | 131 | core/java/android/hardware/input/IInputManager.aidl \ |
Jeff Brown | af9e8d3 | 2012-04-12 17:32:48 -0700 | [diff] [blame] | 132 | core/java/android/hardware/input/IInputDevicesChangedListener.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 133 | core/java/android/hardware/location/IFusedLocationHardware.aidl \ |
| 134 | core/java/android/hardware/location/IFusedLocationHardwareSink.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 135 | core/java/android/hardware/location/IGeofenceHardware.aidl \ |
| 136 | core/java/android/hardware/location/IGeofenceHardwareCallback.aidl \ |
Jaikumar Ganesh | da65089 | 2013-04-17 12:19:10 -0700 | [diff] [blame] | 137 | core/java/android/hardware/location/IGeofenceHardwareMonitorCallback.aidl \ |
Mike Lockwood | c4308f0 | 2011-03-01 08:04:54 -0800 | [diff] [blame] | 138 | core/java/android/hardware/usb/IUsbManager.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 139 | core/java/android/net/IConnectivityManager.aidl \ |
San Mehat | 4d02d00 | 2010-01-22 16:07:46 -0800 | [diff] [blame] | 140 | core/java/android/net/INetworkManagementEventObserver.aidl \ |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 141 | core/java/android/net/INetworkPolicyListener.aidl \ |
Jeff Sharkey | d5cdd59 | 2011-05-03 20:27:17 -0700 | [diff] [blame] | 142 | core/java/android/net/INetworkPolicyManager.aidl \ |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 143 | core/java/android/net/INetworkStatsService.aidl \ |
Jeff Sharkey | b52e3e5 | 2012-04-06 11:12:08 -0700 | [diff] [blame] | 144 | core/java/android/net/INetworkStatsSession.aidl \ |
Irfan Sheriff | 7d024d3 | 2012-03-22 17:01:39 -0700 | [diff] [blame] | 145 | core/java/android/net/nsd/INsdManager.aidl \ |
Martijn Coenen | 5b1e032 | 2013-09-02 20:38:47 -0700 | [diff] [blame] | 146 | core/java/android/nfc/IAppCallback.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 147 | core/java/android/nfc/INfcAdapter.aidl \ |
Nick Pelly | 367f41f | 2011-03-08 11:43:30 -0800 | [diff] [blame] | 148 | core/java/android/nfc/INfcAdapterExtras.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 149 | core/java/android/nfc/INfcTag.aidl \ |
Martijn Coenen | a739788 | 2013-07-30 20:07:47 -0700 | [diff] [blame] | 150 | core/java/android/nfc/INfcCardEmulation.aidl \ |
Todd Poynor | a9de346 | 2013-05-22 18:53:29 -0700 | [diff] [blame] | 151 | core/java/android/os/IBatteryPropertiesListener.aidl \ |
| 152 | core/java/android/os/IBatteryPropertiesRegistrar.aidl \ |
Jeff Brown | a7771df | 2012-05-07 20:06:46 -0700 | [diff] [blame] | 153 | core/java/android/os/ICancellationSignal.aidl \ |
Mike Lockwood | eb9cbb8 | 2010-05-17 17:27:30 -0400 | [diff] [blame] | 154 | core/java/android/os/IHardwareService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 155 | core/java/android/os/IMessenger.aidl \ |
San Mehat | 873f214 | 2010-01-14 10:25:07 -0800 | [diff] [blame] | 156 | core/java/android/os/INetworkManagementService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 157 | core/java/android/os/IPermissionController.aidl \ |
| 158 | core/java/android/os/IPowerManager.aidl \ |
Svetoslav Ganov | 8643aa0 | 2011-04-20 12:12:33 -0700 | [diff] [blame] | 159 | core/java/android/os/IRemoteCallback.aidl \ |
Glenn Kasten | 07b0465 | 2012-04-23 15:00:43 -0700 | [diff] [blame] | 160 | core/java/android/os/ISchedulingPolicyService.aidl \ |
Christopher Tate | 8662cab5 | 2012-02-23 14:59:36 -0800 | [diff] [blame] | 161 | core/java/android/os/IUpdateLock.aidl \ |
Dianne Hackborn | e3f23a3 | 2013-03-01 13:25:35 -0800 | [diff] [blame] | 162 | core/java/android/os/IUserManager.aidl \ |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 163 | core/java/android/os/IVibratorService.aidl \ |
Daniel Sandler | 5feceeb | 2013-03-22 18:29:23 -0700 | [diff] [blame] | 164 | core/java/android/service/notification/INotificationListener.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 165 | core/java/android/print/ILayoutResultCallback.aidl \ |
Svetoslav Ganov | 44720af | 2013-08-20 16:32:53 -0700 | [diff] [blame] | 166 | core/java/android/print/IPrinterDiscoveryObserver.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 167 | core/java/android/print/IPrintDocumentAdapter.aidl \ |
Svetoslav Ganov | 858a185 | 2013-10-17 22:20:40 -0700 | [diff] [blame] | 168 | core/java/android/print/IPrintDocumentAdapterObserver.aidl \ |
Svetoslav Ganov | 704697b | 2013-09-21 20:30:24 -0700 | [diff] [blame] | 169 | core/java/android/print/IPrintJobStateChangeListener.aidl \ |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 170 | core/java/android/print/IPrintManager.aidl \ |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 171 | core/java/android/print/IPrintSpooler.aidl \ |
| 172 | core/java/android/print/IPrintSpoolerCallbacks.aidl \ |
| 173 | core/java/android/print/IPrintSpoolerClient.aidl \ |
| 174 | core/java/android/print/IWriteResultCallback.aidl \ |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 175 | core/java/android/printservice/IPrintService.aidl \ |
| 176 | core/java/android/printservice/IPrintServiceClient.aidl \ |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 177 | core/java/android/service/dreams/IDreamManager.aidl \ |
| 178 | core/java/android/service/dreams/IDreamService.aidl \ |
Svetoslav Ganov | 8643aa0 | 2011-04-20 12:12:33 -0700 | [diff] [blame] | 179 | core/java/android/service/wallpaper/IWallpaperConnection.aidl \ |
| 180 | core/java/android/service/wallpaper/IWallpaperEngine.aidl \ |
| 181 | core/java/android/service/wallpaper/IWallpaperService.aidl \ |
| 182 | core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\ |
| 183 | core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\ |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 184 | core/java/android/view/accessibility/IAccessibilityManager.aidl \ |
| 185 | core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 186 | core/java/android/view/IApplicationToken.aidl \ |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 187 | core/java/android/view/IAssetAtlas.aidl \ |
Svetoslav Ganov | 545252f | 2012-12-10 18:29:24 -0800 | [diff] [blame] | 188 | core/java/android/view/IMagnificationCallbacks.aidl \ |
Svetoslav Ganov | c9c9a48 | 2012-07-16 08:46:07 -0700 | [diff] [blame] | 189 | core/java/android/view/IInputFilter.aidl \ |
| 190 | core/java/android/view/IInputFilterHost.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 191 | core/java/android/view/IOnKeyguardExitResult.aidl \ |
| 192 | core/java/android/view/IRotationWatcher.aidl \ |
| 193 | core/java/android/view/IWindow.aidl \ |
Dianne Hackborn | e3f23a3 | 2013-03-01 13:25:35 -0800 | [diff] [blame] | 194 | core/java/android/view/IWindowFocusObserver.aidl \ |
| 195 | core/java/android/view/IWindowId.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 196 | core/java/android/view/IWindowManager.aidl \ |
| 197 | core/java/android/view/IWindowSession.aidl \ |
Alex Gruenstein | 361ec77 | 2009-09-15 11:19:58 -0700 | [diff] [blame] | 198 | core/java/android/speech/IRecognitionListener.aidl \ |
| 199 | core/java/android/speech/IRecognitionService.aidl \ |
Bjorn Bringert | 50e657b | 2011-03-08 16:00:40 +0000 | [diff] [blame] | 200 | core/java/android/speech/tts/ITextToSpeechCallback.aidl \ |
| 201 | core/java/android/speech/tts/ITextToSpeechService.aidl \ |
Dianne Hackborn | c229302 | 2013-02-06 23:14:49 -0800 | [diff] [blame] | 202 | core/java/com/android/internal/app/IAppOpsCallback.aidl \ |
Dianne Hackborn | a06de0f | 2012-12-11 16:34:47 -0800 | [diff] [blame] | 203 | core/java/com/android/internal/app/IAppOpsService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 204 | core/java/com/android/internal/app/IBatteryStats.aidl \ |
Dianne Hackborn | 23fb6e8 | 2013-08-07 10:08:22 -0700 | [diff] [blame] | 205 | core/java/com/android/internal/app/IProcessStats.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 206 | core/java/com/android/internal/app/IUsageStats.aidl \ |
Suchi Amalapurapu | c028be4 | 2010-01-25 12:19:12 -0800 | [diff] [blame] | 207 | core/java/com/android/internal/app/IMediaContainerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 208 | core/java/com/android/internal/appwidget/IAppWidgetService.aidl \ |
| 209 | core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \ |
Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 210 | core/java/com/android/internal/backup/IBackupTransport.aidl \ |
Christopher Tate | 46cc43c | 2013-02-19 14:08:59 -0800 | [diff] [blame] | 211 | core/java/com/android/internal/backup/IObbBackupService.aidl \ |
Jim Miller | 6edf263 | 2011-09-05 16:03:14 -0700 | [diff] [blame] | 212 | core/java/com/android/internal/policy/IFaceLockCallback.aidl \ |
| 213 | core/java/com/android/internal/policy/IFaceLockInterface.aidl \ |
Jim Miller | 2519057 | 2013-02-28 17:36:24 -0800 | [diff] [blame] | 214 | core/java/com/android/internal/policy/IKeyguardShowCallback.aidl \ |
| 215 | core/java/com/android/internal/policy/IKeyguardExitCallback.aidl \ |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 216 | core/java/com/android/internal/policy/IKeyguardService.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 217 | core/java/com/android/internal/os/IDropBoxManagerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 218 | core/java/com/android/internal/os/IResultReceiver.aidl \ |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 219 | core/java/com/android/internal/statusbar/IStatusBar.aidl \ |
| 220 | core/java/com/android/internal/statusbar/IStatusBarService.aidl \ |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 221 | core/java/com/android/internal/textservice/ISpellCheckerService.aidl \ |
| 222 | core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \ |
| 223 | core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \ |
| 224 | core/java/com/android/internal/textservice/ITextServicesManager.aidl \ |
| 225 | core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 226 | core/java/com/android/internal/view/IInputContext.aidl \ |
| 227 | core/java/com/android/internal/view/IInputContextCallback.aidl \ |
| 228 | core/java/com/android/internal/view/IInputMethod.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 229 | core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 230 | core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 231 | core/java/com/android/internal/view/IInputMethodSession.aidl \ |
Michael Wright | 52a5352 | 2013-03-14 10:59:38 -0700 | [diff] [blame] | 232 | core/java/com/android/internal/view/IInputSessionCallback.aidl \ |
Amith Yamasani | 52c489c | 2012-03-28 11:42:42 -0700 | [diff] [blame] | 233 | core/java/com/android/internal/widget/ILockSettings.aidl \ |
Winson Chung | 499cb9f | 2010-07-16 11:18:17 -0700 | [diff] [blame] | 234 | core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \ |
Winson Chung | 81f39eb | 2011-01-11 18:05:01 -0800 | [diff] [blame] | 235 | core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \ |
Brian Carlstrom | 93201f5 | 2011-06-09 15:05:35 -0700 | [diff] [blame] | 236 | keystore/java/android/security/IKeyChainAliasCallback.aidl \ |
Brian Carlstrom | b9a07c1 | 2011-04-11 09:03:51 -0700 | [diff] [blame] | 237 | keystore/java/android/security/IKeyChainService.aidl \ |
Bai Tao | a58a875 | 2010-07-13 15:32:16 +0800 | [diff] [blame] | 238 | location/java/android/location/ICountryDetector.aidl \ |
| 239 | location/java/android/location/ICountryListener.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 240 | location/java/android/location/IFusedProvider.aidl \ |
Mike Lockwood | a55c321 | 2009-04-15 11:10:11 -0400 | [diff] [blame] | 241 | location/java/android/location/IGeocodeProvider.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 242 | location/java/android/location/IGeofenceProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 | location/java/android/location/IGpsStatusListener.aidl \ |
Mike Lockwood | 15e3d0f | 2009-05-01 07:53:28 -0400 | [diff] [blame] | 244 | location/java/android/location/IGpsStatusProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 | location/java/android/location/ILocationListener.aidl \ |
| 246 | location/java/android/location/ILocationManager.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 247 | location/java/android/location/IFusedGeofenceHardware.aidl \ |
Jaikumar Ganesh | 8ce470d | 2013-04-03 12:22:18 -0700 | [diff] [blame] | 248 | location/java/android/location/IGpsGeofenceHardware.aidl \ |
Danke Xie | 22d1f9f | 2009-08-18 18:28:45 -0400 | [diff] [blame] | 249 | location/java/android/location/INetInitiatedListener.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 250 | location/java/com/android/internal/location/ILocationProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 251 | media/java/android/media/IAudioService.aidl \ |
Jean-Michel Trivi | d5176cf | 2010-01-28 11:56:42 -0800 | [diff] [blame] | 252 | media/java/android/media/IAudioFocusDispatcher.aidl \ |
Jean-Michel Trivi | 1357012 | 2012-06-19 14:03:09 -0700 | [diff] [blame] | 253 | media/java/android/media/IAudioRoutesObserver.aidl \ |
Jeff Brown | 69b0716 | 2013-11-07 00:30:16 -0800 | [diff] [blame] | 254 | media/java/android/media/IMediaRouterClient.aidl \ |
| 255 | media/java/android/media/IMediaRouterService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 256 | media/java/android/media/IMediaScannerListener.aidl \ |
| 257 | media/java/android/media/IMediaScannerService.aidl \ |
Jean-Michel Trivi | 4426e42 | 2011-08-18 19:16:47 -0700 | [diff] [blame] | 258 | media/java/android/media/IRemoteControlClient.aidl \ |
| 259 | media/java/android/media/IRemoteControlDisplay.aidl \ |
Jeff Brown | f3c99e8 | 2013-11-05 16:29:21 -0800 | [diff] [blame] | 260 | media/java/android/media/IRemoteDisplayCallback.aidl \ |
| 261 | media/java/android/media/IRemoteDisplayProvider.aidl \ |
Jean-Michel Trivi | 1357012 | 2012-06-19 14:03:09 -0700 | [diff] [blame] | 262 | media/java/android/media/IRemoteVolumeObserver.aidl \ |
Jeff Sharkey | 098d580 | 2012-04-26 17:30:34 -0700 | [diff] [blame] | 263 | media/java/android/media/IRingtonePlayer.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 264 | telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ |
| 265 | telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
| 266 | telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
Wink Saville | 5a72553 | 2013-02-07 17:03:05 -0800 | [diff] [blame] | 267 | telephony/java/com/android/internal/telephony/ISms.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 | telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ |
noda | 7640caa | 2010-08-20 08:10:00 +0900 | [diff] [blame] | 269 | telephony/java/com/android/internal/telephony/IWapPushManager.aidl \ |
John Wang | e91bc68 | 2009-03-27 18:24:06 -0700 | [diff] [blame] | 270 | wifi/java/android/net/wifi/IWifiManager.aidl \ |
Jason Monk | 602b232 | 2013-07-03 17:04:33 -0400 | [diff] [blame] | 271 | wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \ |
Jason Monk | 9ced3cd | 2013-08-12 16:42:38 -0400 | [diff] [blame] | 272 | packages/services/PacProcessor/com/android/net/IProxyService.aidl \ |
Jason Monk | 6f8a68f | 2013-08-23 19:21:25 -0400 | [diff] [blame] | 273 | packages/services/Proxy/com/android/net/IProxyCallback.aidl \ |
| 274 | packages/services/Proxy/com/android/net/IProxyPortListener.aidl \ |
Doug Zongker | 45e6dbf | 2009-12-08 12:47:12 -0800 | [diff] [blame] | 275 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 276 | # FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk |
| 277 | LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 278 | |
| 279 | LOCAL_INTERMEDIATE_SOURCES := \ |
Joe Onorato | 80a60ba | 2010-07-14 19:58:30 -0700 | [diff] [blame] | 280 | $(framework_res_source_path)/android/R.java \ |
| 281 | $(framework_res_source_path)/android/Manifest.java \ |
| 282 | $(framework_res_source_path)/com/android/internal/R.java |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 283 | |
| 284 | LOCAL_NO_STANDARD_LIBRARIES := true |
Kenny Root | 12e7522 | 2013-04-23 22:34:24 -0700 | [diff] [blame] | 285 | 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] | 286 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 287 | LOCAL_MODULE := framework-base |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 288 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 289 | LOCAL_JAR_EXCLUDE_FILES := none |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 290 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 291 | include $(BUILD_STATIC_JAVA_LIBRARY) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 292 | |
| 293 | # Make sure that R.java and Manifest.java are built before we build |
| 294 | # the source for this library. |
| 295 | framework_res_R_stamp := \ |
| 296 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp |
| 297 | $(full_classes_compiled_jar): $(framework_res_R_stamp) |
| 298 | |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 299 | # Build part 1 of the framework library. |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 300 | # ============================================================ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 301 | include $(CLEAR_VARS) |
| 302 | |
| 303 | LOCAL_MODULE := framework |
| 304 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 305 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 306 | LOCAL_STATIC_JAVA_LIBRARIES := framework-base |
| 307 | LOCAL_DX_FLAGS := --core-library |
| 308 | |
| 309 | # Packages to include, use \* wildcard to include descendants. |
| 310 | LOCAL_JAR_PACKAGES := android\* |
| 311 | |
| 312 | # List of classes and interfaces which should be loaded by the Zygote. |
| 313 | LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes |
| 314 | |
| 315 | include $(BUILD_JAVA_LIBRARY) |
| 316 | framework_module := $(LOCAL_INSTALLED_MODULE) |
| 317 | |
| 318 | # Build part 2 of the framework library. |
| 319 | # ============================================================ |
| 320 | include $(CLEAR_VARS) |
| 321 | |
| 322 | LOCAL_MODULE := framework2 |
| 323 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 324 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 325 | LOCAL_STATIC_JAVA_LIBRARIES := framework-base |
| 326 | LOCAL_DX_FLAGS := --core-library |
| 327 | |
| 328 | # Packages to include, use \* wildcard to include descendants. |
| 329 | LOCAL_JAR_PACKAGES := com\* javax\* |
| 330 | |
| 331 | include $(BUILD_JAVA_LIBRARY) |
| 332 | framework2_module := $(LOCAL_INSTALLED_MODULE) |
| 333 | |
| 334 | # Make sure that all framework modules are installed when framework is. |
| 335 | # ============================================================ |
| 336 | $(framework_module): | $(dir $(framework_module))framework-res.apk |
| 337 | $(framework_module): | $(dir $(framework_module))framework2.jar |
| 338 | |
| 339 | framework_built := $(call java-lib-deps,framework framework2) |
| 340 | |
| 341 | # Copy AIDL files to be preprocessed and included in the SDK, |
| 342 | # specified relative to the root of the build tree. |
| 343 | # ============================================================ |
| 344 | include $(CLEAR_VARS) |
| 345 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 346 | aidl_files := \ |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 347 | frameworks/base/core/java/android/accounts/IAccountManager.aidl \ |
| 348 | frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \ |
| 349 | frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \ |
| 350 | frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 351 | frameworks/base/core/java/android/app/Notification.aidl \ |
| 352 | frameworks/base/core/java/android/app/PendingIntent.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 353 | frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \ |
Nick Pelly | 459ba86 | 2009-11-04 17:23:55 -0800 | [diff] [blame] | 354 | frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \ |
Jaikumar Ganesh | 2ea1e85 | 2011-04-01 16:33:09 -0700 | [diff] [blame] | 355 | frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 356 | frameworks/base/core/java/android/content/ComponentName.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 357 | frameworks/base/core/java/android/content/ContentValues.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 358 | frameworks/base/core/java/android/content/Intent.aidl \ |
Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 359 | frameworks/base/core/java/android/content/IntentSender.aidl \ |
Fred Quintana | c5d1c6d | 2010-01-27 12:17:49 -0800 | [diff] [blame] | 360 | frameworks/base/core/java/android/content/PeriodicSync.aidl \ |
Matthew Williams | fa77418 | 2013-06-18 15:44:11 -0700 | [diff] [blame] | 361 | frameworks/base/core/java/android/content/SyncRequest.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 362 | frameworks/base/core/java/android/content/SyncStats.aidl \ |
| 363 | frameworks/base/core/java/android/content/res/Configuration.aidl \ |
Nick Pelly | bb392ba | 2013-04-22 15:52:03 +1000 | [diff] [blame] | 364 | frameworks/base/core/java/android/database/CursorWindow.aidl \ |
destradaa | 0682809a | 2013-08-12 18:50:30 -0700 | [diff] [blame] | 365 | frameworks/base/core/java/android/hardware/location/GeofenceHardwareRequestParcelable.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 366 | frameworks/base/core/java/android/net/Uri.aidl \ |
Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 367 | frameworks/base/core/java/android/nfc/NdefMessage.aidl \ |
| 368 | frameworks/base/core/java/android/nfc/NdefRecord.aidl \ |
| 369 | frameworks/base/core/java/android/nfc/Tag.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 370 | frameworks/base/core/java/android/os/Bundle.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 371 | frameworks/base/core/java/android/os/DropBoxManager.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 372 | frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \ |
Nick Pelly | aef439e | 2009-09-28 12:33:17 -0700 | [diff] [blame] | 373 | frameworks/base/core/java/android/os/ParcelUuid.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 374 | frameworks/base/core/java/android/view/KeyEvent.aidl \ |
| 375 | frameworks/base/core/java/android/view/MotionEvent.aidl \ |
| 376 | frameworks/base/core/java/android/view/Surface.aidl \ |
| 377 | frameworks/base/core/java/android/view/WindowManager.aidl \ |
| 378 | frameworks/base/core/java/android/widget/RemoteViews.aidl \ |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 379 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \ |
| 380 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \ |
| 381 | frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \ |
| 382 | frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \ |
| 383 | 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] | 384 | frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \ |
| 385 | 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] | 386 | frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 387 | frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 388 | frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \ |
| 389 | frameworks/base/graphics/java/android/graphics/Bitmap.aidl \ |
| 390 | frameworks/base/graphics/java/android/graphics/Rect.aidl \ |
| 391 | frameworks/base/graphics/java/android/graphics/Region.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 392 | frameworks/base/location/java/android/location/Criteria.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 393 | frameworks/base/location/java/android/location/Geofence.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 394 | frameworks/base/location/java/android/location/Location.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 395 | frameworks/base/location/java/android/location/LocationRequest.aidl \ |
destradaa | 1af4b02 | 2013-07-12 15:43:36 -0700 | [diff] [blame] | 396 | frameworks/base/location/java/android/location/FusedBatchOptions.aidl \ |
Nick Pelly | 6fa9ad4 | 2012-07-16 12:18:23 -0700 | [diff] [blame] | 397 | frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \ |
| 398 | 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] | 399 | frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ |
| 400 | frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
Raphael | d8b51a2 | 2009-06-08 22:05:22 -0700 | [diff] [blame] | 401 | frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
Robert Greenwalt | 0451d59 | 2013-08-01 18:24:13 -0700 | [diff] [blame] | 402 | frameworks/base/wifi/java/android/net/wifi/BatchedScanSettings.aidl \ |
| 403 | frameworks/base/wifi/java/android/net/wifi/BatchedScanResult.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 404 | |
| 405 | gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl |
| 406 | $(gen): PRIVATE_SRC_FILES := $(aidl_files) |
| 407 | ALL_SDK_FILES += $(gen) |
| 408 | $(gen): $(aidl_files) | $(AIDL) |
| 409 | @echo Aidl Preprocess: $@ |
| 410 | $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES) |
| 411 | |
| 412 | # the documentation |
| 413 | # ============================================================ |
| 414 | |
| 415 | # TODO: deal with com/google/android/googleapps |
| 416 | packages_to_document := \ |
| 417 | android \ |
| 418 | javax/microedition/khronos |
| 419 | |
| 420 | # Search through the base framework dirs for these packages. |
| 421 | # The result will be relative to frameworks/base. |
| 422 | fwbase_dirs_to_document := \ |
Brett Chabot | e70f61b | 2010-02-19 10:49:27 -0800 | [diff] [blame] | 423 | test-runner/src \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 424 | $(patsubst $(LOCAL_PATH)/%,%, \ |
| 425 | $(wildcard \ |
| 426 | $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \ |
| 427 | $(addprefix $(dir)/, $(packages_to_document)) \ |
| 428 | ) \ |
| 429 | ) \ |
| 430 | ) |
| 431 | |
Brian Carlstrom | cf9a013 | 2011-01-05 17:52:36 -0800 | [diff] [blame] | 432 | # include definition of libcore_to_document |
Brett Chabot | 571db32 | 2012-04-16 10:13:59 -0700 | [diff] [blame] | 433 | include libcore/Docs.mk |
| 434 | |
| 435 | # include definition of junit_to_document |
| 436 | include external/junit/Common.mk |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 437 | |
| 438 | non_base_dirs := \ |
Wink Saville | a639b31 | 2012-07-10 12:37:54 -0700 | [diff] [blame] | 439 | ../../external/apache-http/src/org/apache/http \ |
Jake Hamby | 43e51a3 | 2013-09-18 13:18:09 -0700 | [diff] [blame] | 440 | ../opt/telephony/src/java/android/provider \ |
Wink Saville | a639b31 | 2012-07-10 12:37:54 -0700 | [diff] [blame] | 441 | ../opt/telephony/src/java/android/telephony \ |
| 442 | ../opt/telephony/src/java/android/telephony/gsm \ |
Wink Saville | cbb2a2a | 2013-01-28 15:27:47 -0800 | [diff] [blame] | 443 | ../opt/net/voip/src/java/android/net/rtp \ |
| 444 | ../opt/net/voip/src/java/android/net/sip |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 445 | |
| 446 | # These are relative to frameworks/base |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 447 | dirs_to_check_apis := \ |
| 448 | $(fwbase_dirs_to_document) \ |
Brian Carlstrom | a9602db | 2011-03-24 14:14:28 -0700 | [diff] [blame] | 449 | $(non_base_dirs) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 450 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 451 | # These are relative to frameworks/base |
| 452 | # FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk |
| 453 | dirs_to_document := \ |
| 454 | $(dirs_to_check_apis) \ |
| 455 | $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS)) |
| 456 | |
| 457 | # These are relative to frameworks/base |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 458 | html_dirs := \ |
| 459 | $(FRAMEWORKS_BASE_SUBDIRS) \ |
| 460 | $(non_base_dirs) |
| 461 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 462 | # Common sources for doc check and api check |
| 463 | common_src_files := \ |
| 464 | $(call find-other-html-files, $(html_dirs)) \ |
Ying Wang | 50a0fd5 | 2013-12-04 16:01:06 -0800 | [diff] [blame] | 465 | $(addprefix ../../libcore/, $(libcore_to_document)) \ |
| 466 | $(addprefix ../../external/junit/, $(junit_to_document)) |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 467 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 468 | # These are relative to frameworks/base |
| 469 | framework_docs_LOCAL_SRC_FILES := \ |
| 470 | $(call find-other-java-files, $(dirs_to_document)) \ |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 471 | $(common_src_files) |
| 472 | |
| 473 | # These are relative to frameworks/base |
| 474 | framework_docs_LOCAL_API_CHECK_SRC_FILES := \ |
| 475 | $(call find-other-java-files, $(dirs_to_check_apis)) \ |
| 476 | $(common_src_files) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 477 | |
Joe Onorato | 626db91 | 2010-05-17 18:21:44 -0700 | [diff] [blame] | 478 | # This is used by ide.mk as the list of source files that are |
| 479 | # always included. |
| 480 | INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document)) |
| 481 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 482 | framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \ |
| 483 | $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 484 | |
| 485 | framework_docs_LOCAL_INTERMEDIATE_SOURCES := \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 486 | $(framework_res_source_path)/android/R.java \ |
| 487 | $(framework_res_source_path)/android/Manifest.java \ |
| 488 | $(framework_res_source_path)/com/android/internal/R.java |
| 489 | |
| 490 | framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES := \ |
| 491 | bouncycastle \ |
Kenny Root | e9ae682 | 2013-04-29 23:09:03 -0700 | [diff] [blame] | 492 | conscrypt \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 493 | core \ |
Jeff Brown | eb6403e | 2013-04-26 12:02:36 -0700 | [diff] [blame] | 494 | okhttp \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 495 | ext \ |
| 496 | framework \ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 497 | framework2 \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 498 | mms-common \ |
| 499 | telephony-common \ |
| 500 | voip-common |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 501 | |
| 502 | framework_docs_LOCAL_JAVA_LIBRARIES := \ |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 503 | $(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) \ |
| 504 | $(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 505 | |
| 506 | framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
Joe Onorato | 3fec2bf | 2010-08-27 15:05:39 -0400 | [diff] [blame] | 507 | framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html |
Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 508 | # The since flag (-since N.xml API_LEVEL) is used to add API Level information |
| 509 | # 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] | 510 | framework_docs_LOCAL_DROIDDOC_OPTIONS := \ |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 511 | -knowntags ./frameworks/base/docs/knowntags.txt \ |
Ying Wang | f74f0de | 2012-12-04 15:12:49 -0800 | [diff] [blame] | 512 | -since $(SRC_API_DIR)/1.xml 1 \ |
| 513 | -since $(SRC_API_DIR)/2.xml 2 \ |
| 514 | -since $(SRC_API_DIR)/3.xml 3 \ |
| 515 | -since $(SRC_API_DIR)/4.xml 4 \ |
| 516 | -since $(SRC_API_DIR)/5.xml 5 \ |
| 517 | -since $(SRC_API_DIR)/6.xml 6 \ |
| 518 | -since $(SRC_API_DIR)/7.xml 7 \ |
| 519 | -since $(SRC_API_DIR)/8.xml 8 \ |
| 520 | -since $(SRC_API_DIR)/9.xml 9 \ |
| 521 | -since $(SRC_API_DIR)/10.xml 10 \ |
| 522 | -since $(SRC_API_DIR)/11.xml 11 \ |
| 523 | -since $(SRC_API_DIR)/12.xml 12 \ |
| 524 | -since $(SRC_API_DIR)/13.xml 13 \ |
| 525 | -since $(SRC_API_DIR)/14.txt 14 \ |
| 526 | -since $(SRC_API_DIR)/15.txt 15 \ |
| 527 | -since $(SRC_API_DIR)/16.txt 16 \ |
| 528 | -since $(SRC_API_DIR)/17.txt 17 \ |
Scott Main | 0d9e45a | 2013-04-11 11:37:29 -0700 | [diff] [blame] | 529 | -since $(SRC_API_DIR)/18.txt 18 \ |
Scott Main | 49551ad | 2013-10-03 16:46:53 -0700 | [diff] [blame] | 530 | -since $(SRC_API_DIR)/19.txt 19 \ |
Joe Onorato | 0ba4ac7 | 2010-09-16 15:42:20 -0400 | [diff] [blame] | 531 | -werror -hide 113 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 532 | -overview $(LOCAL_PATH)/core/java/overview.html |
| 533 | |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 534 | framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR:= \ |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 535 | $(call intermediates-dir-for,JAVA_LIBRARIES,framework-base,,COMMON) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 536 | |
| 537 | framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= \ |
| 538 | $(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR) \ |
Jeff Brown | ae1d6f2 | 2013-05-10 20:37:12 -0700 | [diff] [blame] | 539 | $(foreach lib,$(FRAMEWORKS_SUPPORT_JAVA_LIBRARIES),$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)) \ |
| 540 | $(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] | 541 | |
| 542 | framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \ |
| 543 | frameworks/base/docs/knowntags.txt |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 544 | |
Dirk Dougherty | c5f168a | 2013-10-29 20:59:20 -0700 | [diff] [blame] | 545 | sample_dir := development/samples/browseable |
Dirk Dougherty | 2826df3 | 2013-09-03 15:32:24 -0700 | [diff] [blame] | 546 | new_sample_dir := developers/samples/android |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 547 | |
Dirk Dougherty | a6c0267 | 2013-09-11 11:53:35 -0700 | [diff] [blame] | 548 | # Whitelist of valid groups, used for default TOC grouping. Each sample must |
| 549 | # belong to one (and only one) group. Assign samples to groups by setting |
| 550 | # a sample.group var to one of these groups in the sample's _index.jd. |
Dirk Dougherty | c5f168a | 2013-10-29 20:59:20 -0700 | [diff] [blame] | 551 | sample_groups := -samplegroup Background \ |
| 552 | -samplegroup Connectivity \ |
| 553 | -samplegroup Content \ |
| 554 | -samplegroup Input \ |
| 555 | -samplegroup Media \ |
| 556 | -samplegroup Security \ |
| 557 | -samplegroup Testing \ |
| 558 | -samplegroup UI \ |
| 559 | -samplegroup Views |
Dirk Dougherty | a6c0267 | 2013-09-11 11:53:35 -0700 | [diff] [blame] | 560 | |
Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 561 | # the list here should match the list of samples included in the sdk samples package |
| 562 | # (see development/build/sdk.atree) |
Dirk Dougherty | 9cab5c0 | 2013-01-29 15:00:04 -0800 | [diff] [blame] | 563 | # remove htmlified samples for now -- samples are still available through the SDK |
Dirk Dougherty | b6bc020 | 2013-07-09 13:18:15 -0700 | [diff] [blame] | 564 | web_docs_sample_code_flags := \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 565 | -hdf android.hasSamples 1 \ |
Dirk Dougherty | c5f168a | 2013-10-29 20:59:20 -0700 | [diff] [blame] | 566 | -samplecode $(sample_dir)/BasicAccessibility \ |
Dirk Dougherty | 3626569 | 2013-10-30 00:22:16 -0700 | [diff] [blame] | 567 | samples/BasicAccessibility "" \ |
Dirk Dougherty | c5f168a | 2013-10-29 20:59:20 -0700 | [diff] [blame] | 568 | -samplecode $(sample_dir)/HorizontalPaging \ |
| 569 | samples/HorizontalPaging "" \ |
| 570 | -samplecode $(sample_dir)/ShareActionProvider \ |
| 571 | samples/ShareActionProvider "" \ |
| 572 | -samplecode $(sample_dir)/Styled \ |
| 573 | samples/Styled "" \ |
| 574 | -samplecode $(sample_dir)/BasicAndroidKeyStore \ |
| 575 | samples/BasicAndroidKeyStore "" \ |
| 576 | -samplecode $(sample_dir)/Basic \ |
| 577 | samples/Basic "" \ |
| 578 | -samplecode $(sample_dir)/ImmersiveMode \ |
| 579 | samples/ImmersiveMode "" \ |
| 580 | -samplecode $(sample_dir)/repeatingAlarm \ |
| 581 | samples/repeatingAlarm "" \ |
| 582 | -samplecode $(sample_dir)/TextLinkify \ |
| 583 | samples/TextLinkify "" \ |
| 584 | -samplecode $(sample_dir)/BasicMediaRouter \ |
| 585 | samples/BasicMediaRouter "" \ |
| 586 | -samplecode $(sample_dir)/BasicMultitouch \ |
| 587 | samples/BasicMultitouch "" \ |
| 588 | -samplecode $(sample_dir)/TextSwitcher \ |
| 589 | samples/TextSwitcher "" \ |
| 590 | -samplecode $(sample_dir)/ActivityInstrumentation \ |
| 591 | samples/ActivityInstrumentation "" \ |
| 592 | -samplecode $(sample_dir)/BorderlessButtons \ |
| 593 | samples/BorderlessButtons "" \ |
| 594 | -samplecode $(sample_dir)/BasicNotifications \ |
| 595 | samples/BasicNotifications "" \ |
| 596 | -samplecode $(sample_dir)/AdvancedImmersiveMode \ |
| 597 | samples/AdvancedImmersiveMode "" \ |
| 598 | -samplecode $(sample_dir)/BluetoothLeGatt \ |
| 599 | samples/BluetoothLeGatt "" \ |
| 600 | -samplecode $(sample_dir)/NetworkConnect \ |
| 601 | samples/NetworkConnect "" \ |
| 602 | -samplecode $(sample_dir)/BasicNetworking \ |
| 603 | samples/BasicNetworking "" \ |
| 604 | -samplecode $(sample_dir)/BasicMediaDecoder \ |
| 605 | samples/BasicMediaDecoder "" \ |
| 606 | -samplecode $(sample_dir)/BasicImmersiveMode \ |
| 607 | samples/BasicImmersiveMode "" \ |
| 608 | -samplecode $(sample_dir)/CustomChoiceList \ |
| 609 | samples/CustomChoiceList "" \ |
| 610 | -samplecode $(sample_dir)/BasicContactables \ |
| 611 | samples/BasicContactables "" \ |
| 612 | -samplecode $(sample_dir)/BasicGestureDetect \ |
| 613 | samples/BasicGestureDetect "" \ |
| 614 | -samplecode $(sample_dir)/DoneBar \ |
| 615 | samples/DoneBar "" \ |
| 616 | -samplecode $(sample_dir)/ListPopupMenu \ |
| 617 | samples/ListPopupMenu "" \ |
| 618 | -samplecode $(sample_dir)/AppRestrictions \ |
| 619 | samples/AppRestrictions "" \ |
| 620 | -samplecode $(sample_dir)/CustomNotifications \ |
| 621 | samples/CustomNotifications "" \ |
| 622 | -samplecode $(sample_dir)/BasicSyncAdapter \ |
| 623 | samples/BasicSyncAdapter "" \ |
| 624 | -samplecode $(sample_dir)/StorageClient \ |
Scott Main | 03ec342 | 2013-11-01 17:54:38 -0700 | [diff] [blame] | 625 | samples/StorageClient "" \ |
Scott Main | 4cf4f521 | 2013-11-01 17:52:39 -0700 | [diff] [blame] | 626 | -samplecode $(sample_dir)/StorageProvider \ |
| 627 | samples/StorageProvider "" |
Dirk Dougherty | b6bc020 | 2013-07-09 13:18:15 -0700 | [diff] [blame] | 628 | # -samplecode $(sample_dir)/AndroidBeamDemo \ |
| 629 | # samples/AndroidBeamDemo "Android Beam Demo" \ |
| 630 | # -samplecode $(sample_dir)/ApiDemos \ |
| 631 | # samples/ApiDemos "API Demos" \ |
| 632 | # -samplecode $(sample_dir)/Support4Demos \ |
| 633 | # samples/Support4Demos "API 4+ Support Demos" \ |
| 634 | # -samplecode $(sample_dir)/Support13Demos \ |
| 635 | # samples/Support13Demos "API 13+ Support Demos" \ |
| 636 | # -samplecode $(sample_dir)/BackupRestore \ |
| 637 | # samples/BackupRestore "Backup and Restore" \ |
| 638 | # -samplecode $(sample_dir)/BluetoothChat \ |
| 639 | # samples/BluetoothChat "Bluetooth Chat" \ |
Dirk Dougherty | b6bc020 | 2013-07-09 13:18:15 -0700 | [diff] [blame] | 640 | # -samplecode $(sample_dir)/BusinessCard \ |
| 641 | # samples/BusinessCard "Business Card" \ |
| 642 | # -samplecode $(sample_dir)/ContactManager \ |
| 643 | # samples/ContactManager "Contact Manager" \ |
| 644 | # -samplecode $(sample_dir)/CubeLiveWallpaper \ |
| 645 | # samples/CubeLiveWallpaper "Cube Live Wallpaper" \ |
| 646 | # -samplecode $(sample_dir)/Home \ |
| 647 | # samples/Home "Home" \ |
| 648 | # -samplecode $(sample_dir)/HoneycombGallery \ |
| 649 | # samples/HoneycombGallery "Honeycomb Gallery" \ |
| 650 | # -samplecode $(sample_dir)/JetBoy \ |
| 651 | # samples/JetBoy "JetBoy" \ |
| 652 | # -samplecode $(sample_dir)/KeyChainDemo \ |
| 653 | # samples/KeyChainDemo "KeyChain Demo" \ |
| 654 | # -samplecode $(sample_dir)/LunarLander \ |
| 655 | # samples/LunarLander "Lunar Lander" \ |
| 656 | # -samplecode $(sample_dir)/training/ads-and-ux \ |
| 657 | # samples/training/ads-and-ux "Mobile Advertisement Integration" \ |
| 658 | # -samplecode $(sample_dir)/MultiResolution \ |
| 659 | # samples/MultiResolution "Multiple Resolutions" \ |
| 660 | # -samplecode $(sample_dir)/training/multiscreen/newsreader \ |
| 661 | # samples/newsreader "News Reader" \ |
| 662 | # -samplecode $(sample_dir)/NotePad \ |
| 663 | # samples/NotePad "Note Pad" \ |
| 664 | # -samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \ |
| 665 | # samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \ |
| 666 | # -samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \ |
| 667 | # samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \ |
| 668 | # -samplecode $(sample_dir)/SampleSyncAdapter \ |
| 669 | # samples/SampleSyncAdapter "Sample Sync Adapter" \ |
| 670 | # -samplecode $(sample_dir)/RandomMusicPlayer \ |
| 671 | # samples/RandomMusicPlayer "Random Music Player" \ |
| 672 | # -samplecode $(sample_dir)/RenderScript \ |
| 673 | # samples/RenderScript "RenderScript" \ |
| 674 | # -samplecode $(sample_dir)/SearchableDictionary \ |
| 675 | # samples/SearchableDictionary "Searchable Dictionary v2" \ |
| 676 | # -samplecode $(sample_dir)/SipDemo \ |
| 677 | # samples/SipDemo "SIP Demo" \ |
| 678 | # -samplecode $(sample_dir)/Snake \ |
| 679 | # samples/Snake "Snake" \ |
| 680 | # -samplecode $(sample_dir)/SoftKeyboard \ |
| 681 | # samples/SoftKeyboard "Soft Keyboard" \ |
| 682 | # -samplecode $(sample_dir)/Spinner \ |
| 683 | # samples/Spinner "Spinner" \ |
| 684 | # -samplecode $(sample_dir)/SpinnerTest \ |
| 685 | # samples/SpinnerTest "SpinnerTest" \ |
| 686 | # -samplecode $(sample_dir)/StackWidget \ |
| 687 | # samples/StackWidget "StackView Widget" \ |
| 688 | # -samplecode $(sample_dir)/TicTacToeLib \ |
| 689 | # samples/TicTacToeLib "TicTacToeLib" \ |
| 690 | # -samplecode $(sample_dir)/TicTacToeMain \ |
| 691 | # samples/TicTacToeMain "TicTacToeMain" \ |
| 692 | # -samplecode $(sample_dir)/ToyVpn \ |
| 693 | # samples/ToyVpn "Toy VPN Client" \ |
| 694 | # -samplecode $(sample_dir)/USB \ |
| 695 | # samples/USB "USB" \ |
| 696 | # -samplecode $(sample_dir)/WeatherListWidget \ |
| 697 | # samples/WeatherListWidget "Weather List Widget" \ |
| 698 | # -samplecode $(sample_dir)/WiFiDirectDemo \ |
| 699 | # samples/WiFiDirectDemo "Wi-Fi Direct Demo" \ |
| 700 | # -samplecode $(sample_dir)/Wiktionary \ |
| 701 | # samples/Wiktionary "Wiktionary" \ |
| 702 | # -samplecode $(sample_dir)/WiktionarySimple \ |
| 703 | # samples/WiktionarySimple "Wiktionary (Simplified)" \ |
| 704 | # -samplecode $(sample_dir)/VoiceRecognitionService \ |
| 705 | # samples/VoiceRecognitionService "Voice Recognition Service" \ |
| 706 | # -samplecode $(sample_dir)/VoicemailProviderDemo \ |
| 707 | # samples/VoicemailProviderDemo "Voicemail Provider Demo" \ |
| 708 | # -samplecode $(sample_dir)/XmlAdapters \ |
| 709 | # samples/XmlAdapters "XML Adapters" \ |
| 710 | # -samplecode $(sample_dir)/TtsEngine \ |
| 711 | # samples/TtsEngine "Text To Speech Engine" \ |
| 712 | # -samplecode $(sample_dir)/training/device-management-policy \ |
| 713 | # samples/training/device-management-policy "Device Management Policy" |
Scott Main | aed4ced | 2011-12-15 10:25:41 -0800 | [diff] [blame] | 714 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 715 | |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 716 | ## SDK version identifiers used in the published docs |
| 717 | # major[.minor] version for current SDK. (full releases only) |
Scott Main | 332408f | 2013-10-04 13:43:26 -0700 | [diff] [blame] | 718 | framework_docs_SDK_VERSION:=4.4 |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 719 | # release version (ie "Release x") (full releases only) |
Scott Main | 62e9701 | 2011-02-07 16:35:46 -0800 | [diff] [blame] | 720 | framework_docs_SDK_REL_ID:=1 |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 721 | |
| 722 | framework_docs_LOCAL_DROIDDOC_OPTIONS += \ |
| 723 | -hdf sdk.version $(framework_docs_SDK_VERSION) \ |
Scott Main | b402f11 | 2010-11-29 14:28:13 -0800 | [diff] [blame] | 724 | -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \ |
Scott Main | 62e9701 | 2011-02-07 16:35:46 -0800 | [diff] [blame] | 725 | -hdf sdk.preview 0 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 726 | |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 727 | # ==== the api stubs and current.xml =========================== |
| 728 | include $(CLEAR_VARS) |
| 729 | |
Svetoslav Ganov | 92f12f5 | 2011-11-17 11:53:46 -0800 | [diff] [blame] | 730 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 731 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 732 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_API_CHECK_JAVA_LIBRARIES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 733 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 734 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 735 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
Jeff Brown | caf7b0a | 2013-04-25 21:24:44 -0700 | [diff] [blame] | 736 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_API_CHECK_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 737 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 738 | |
| 739 | LOCAL_MODULE := api-stubs |
| 740 | |
| 741 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 742 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 743 | -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \ |
Joe Onorato | 5e88ac7 | 2011-03-09 13:34:39 -0800 | [diff] [blame] | 744 | -api $(INTERNAL_PLATFORM_API_FILE) \ |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 745 | -nodocs |
| 746 | |
| 747 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 748 | |
Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 749 | LOCAL_UNINSTALLABLE_MODULE := true |
| 750 | |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 751 | include $(BUILD_DROIDDOC) |
| 752 | |
Ying Wang | 6806457 | 2010-05-07 15:00:10 -0700 | [diff] [blame] | 753 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. |
| 754 | $(full_target): $(framework_built) $(gen) |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 755 | $(INTERNAL_PLATFORM_API_FILE): $(full_target) |
| 756 | $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE)) |
| 757 | |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 758 | # ==== check javadoc comments but don't generate docs ======== |
| 759 | include $(CLEAR_VARS) |
| 760 | |
| 761 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 762 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 763 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 764 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 765 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 766 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 767 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 768 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 769 | |
| 770 | LOCAL_MODULE := doc-comment-check |
| 771 | |
| 772 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 773 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 774 | -parsecomments |
| 775 | |
| 776 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 777 | |
Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 778 | LOCAL_UNINSTALLABLE_MODULE := true |
| 779 | |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 780 | include $(BUILD_DROIDDOC) |
| 781 | |
| 782 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. |
| 783 | $(full_target): $(framework_built) $(gen) |
| 784 | |
Ying Wang | 33a436d | 2012-09-27 17:09:53 -0700 | [diff] [blame] | 785 | # Run this for checkbuild |
| 786 | .PHONY: checkbuild |
| 787 | checkbuild: doc-comment-check-docs |
Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 788 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 789 | # ==== static html in the sdk ================================== |
| 790 | include $(CLEAR_VARS) |
| 791 | |
| 792 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 793 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 794 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 795 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 796 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 797 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 798 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 799 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 800 | |
| 801 | LOCAL_MODULE := offline-sdk |
| 802 | |
| 803 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 804 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Dirk Dougherty | a345833 | 2013-08-21 14:47:12 -0700 | [diff] [blame] | 805 | -offlinemode \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 806 | -title "Android SDK" \ |
| 807 | -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ |
| 808 | -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 809 | -sdkvalues $(OUT_DOCS) \ |
Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 810 | -hdf android.whichdoc offline |
Dirk Dougherty | a345833 | 2013-08-21 14:47:12 -0700 | [diff] [blame] | 811 | # $(web_docs_sample_code_flags) |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 812 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 813 | |
| 814 | 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] | 815 | |
| 816 | include $(BUILD_DROIDDOC) |
| 817 | |
| 818 | static_doc_index_redirect := $(out_dir)/index.html |
| 819 | $(static_doc_index_redirect): \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 820 | $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 821 | $(hide) mkdir -p $(dir $@) |
| 822 | $(hide) $(ACP) $< $@ |
| 823 | |
| 824 | $(full_target): $(static_doc_index_redirect) |
| 825 | $(full_target): $(framework_built) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 826 | |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 827 | # ==== 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] | 828 | include $(CLEAR_VARS) |
| 829 | |
| 830 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 831 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 832 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) |
| 833 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 834 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 835 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 836 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 837 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 838 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 839 | LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /intl/ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 840 | |
| 841 | LOCAL_MODULE := online-sdk |
| 842 | |
| 843 | LOCAL_DROIDDOC_OPTIONS:= \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 844 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 845 | -toroot / \ |
Dirk Dougherty | 3626569 | 2013-10-30 00:22:16 -0700 | [diff] [blame] | 846 | -hdf android.whichdoc online \ |
| 847 | $(sample_groups) \ |
| 848 | $(web_docs_sample_code_flags) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 849 | |
| 850 | 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] | 851 | |
| 852 | include $(BUILD_DROIDDOC) |
| 853 | |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 854 | # ==== docs for the web (on the devsite app engine server) ======================= |
| 855 | include $(CLEAR_VARS) |
| 856 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 857 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 858 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) |
| 859 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 860 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 861 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 862 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 863 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
| 864 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
| 865 | # specify a second html input dir and an output path relative to OUT_DIR) |
| 866 | LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl / |
| 867 | |
| 868 | LOCAL_MODULE := ds |
| 869 | |
| 870 | LOCAL_DROIDDOC_OPTIONS:= \ |
| 871 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 872 | -devsite \ |
| 873 | -toroot / \ |
Scott Main | e75cd4b | 2013-01-29 08:29:40 -0800 | [diff] [blame] | 874 | -hdf android.whichdoc online \ |
| 875 | -hdf devsite true |
Dirk Dougherty | a345833 | 2013-08-21 14:47:12 -0700 | [diff] [blame] | 876 | # $(web_docs_sample_code_flags) |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 877 | |
Scott Main | 4b7161c | 2013-01-29 14:20:13 -0800 | [diff] [blame] | 878 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
Dirk Dougherty | 289ad99 | 2013-01-28 15:43:49 -0800 | [diff] [blame] | 879 | |
| 880 | include $(BUILD_DROIDDOC) |
| 881 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 882 | # ==== docs that have all of the stuff that's @hidden ======================= |
| 883 | include $(CLEAR_VARS) |
| 884 | |
| 885 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 886 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
Jeff Brown | 5aa9064 | 2013-07-17 20:44:57 -0700 | [diff] [blame] | 887 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 888 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 889 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 890 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
Ying Wang | 65ee22a | 2011-05-17 13:12:42 -0700 | [diff] [blame] | 891 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 892 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 893 | |
| 894 | LOCAL_MODULE := hidden |
| 895 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 896 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 897 | -title "Android SDK - Including hidden APIs." |
| 898 | # -hidden |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 899 | |
| 900 | 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] | 901 | |
| 902 | include $(BUILD_DROIDDOC) |
| 903 | |
| 904 | # Build ext.jar |
| 905 | # ============================================================ |
| 906 | |
David Deephanphongs | 62f2ada | 2010-10-19 14:54:05 -0700 | [diff] [blame] | 907 | # NOTICE notes for non-obvious sections |
| 908 | # apache-http - covered by the Apache Commons section. |
| 909 | |
| 910 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 911 | ext_dirs := \ |
Chung-yih Wang | 2d94231 | 2010-08-05 12:17:37 +0800 | [diff] [blame] | 912 | ../../external/nist-sip/java \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 913 | ../../external/apache-http/src \ |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 914 | ../../external/tagsoup/src \ |
| 915 | ../../external/libphonenumber/java/src |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 916 | |
| 917 | ext_src_files := $(call all-java-files-under,$(ext_dirs)) |
| 918 | |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 919 | ext_res_dirs := \ |
| 920 | ../../external/libphonenumber/java/src |
| 921 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 922 | # ==== the library ========================================= |
| 923 | include $(CLEAR_VARS) |
| 924 | |
| 925 | LOCAL_SRC_FILES := $(ext_src_files) |
| 926 | |
| 927 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 928 | LOCAL_JAVA_LIBRARIES := core |
Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 929 | LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs) |
Jesse Wilson | a145956 | 2010-09-16 17:50:43 -0700 | [diff] [blame] | 930 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 931 | LOCAL_MODULE := ext |
| 932 | |
Brian Carlstrom | 08065b9 | 2011-04-01 15:49:41 -0700 | [diff] [blame] | 933 | LOCAL_DX_FLAGS := --core-library |
| 934 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 935 | include $(BUILD_JAVA_LIBRARY) |
| 936 | |
| 937 | |
| 938 | # Include subdirectory makefiles |
| 939 | # ============================================================ |
| 940 | |
| 941 | # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework |
| 942 | # team really wants is to build the stuff defined by this makefile. |
| 943 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 944 | include $(call first-makefiles-under,$(LOCAL_PATH)) |
| 945 | endif |