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