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