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