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. |
| 27 | framework-res-source-path := APPS/framework-res_intermediates/src |
| 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 \ |
| 39 | core/java/android/webkit/EventLogTags.logtags \ |
| 40 | telephony/java/com/android/internal/telephony/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 | |
Dave Bort | a833cbb | 2009-04-22 17:33:12 -0700 | [diff] [blame] | 50 | # Include a different set of source files when building a debug build. |
| 51 | # TODO: Maybe build these into a separate .jar and put it on the classpath |
| 52 | # in front of framework.jar. |
| 53 | # NOTE: Do not use this as an example; this is a very special situation. |
| 54 | # Do not modify LOCAL_SRC_FILES based on any variable other |
| 55 | # than TARGET_BUILD_TYPE, otherwise builds can become inconsistent. |
| 56 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 57 | LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug) |
| 58 | else |
| 59 | LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug) |
| 60 | endif |
| 61 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 62 | ## READ ME: ######################################################## |
| 63 | ## |
Mike Lockwood | c1e8aa4 | 2009-04-06 10:52:24 -0700 | [diff] [blame] | 64 | ## 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] | 65 | ## part of the SDK API. If it is, also add it to the list below that |
| 66 | ## is preprocessed and distributed with the SDK. This list should |
| 67 | ## not contain any aidl files for parcelables, but the one below should |
| 68 | ## if you intend for 3rd parties to be able to send those objects |
| 69 | ## across process boundaries. |
| 70 | ## |
| 71 | ## READ ME: ######################################################## |
| 72 | LOCAL_SRC_FILES += \ |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 73 | core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \ |
Dianne Hackborn | dace230 | 2009-07-14 12:51:00 -0700 | [diff] [blame] | 74 | core/java/android/accessibilityservice/IEventListener.aidl \ |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 75 | core/java/android/accounts/IAccountManager.aidl \ |
| 76 | core/java/android/accounts/IAccountManagerResponse.aidl \ |
| 77 | core/java/android/accounts/IAccountAuthenticator.aidl \ |
| 78 | core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 79 | core/java/android/app/IActivityController.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | core/java/android/app/IActivityPendingResult.aidl \ |
| 81 | core/java/android/app/IActivityWatcher.aidl \ |
| 82 | core/java/android/app/IAlarmManager.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 83 | core/java/android/app/IBackupAgent.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 84 | core/java/android/app/IInstrumentationWatcher.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 85 | core/java/android/app/INotificationManager.aidl \ |
| 86 | core/java/android/app/ISearchManager.aidl \ |
Bjorn Bringert | 8d17f3f | 2009-06-05 13:22:28 +0100 | [diff] [blame] | 87 | core/java/android/app/ISearchManagerCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 88 | core/java/android/app/IServiceConnection.aidl \ |
| 89 | core/java/android/app/IStatusBar.aidl \ |
| 90 | core/java/android/app/IThumbnailReceiver.aidl \ |
| 91 | core/java/android/app/ITransientNotification.aidl \ |
Tobias Haamel | 27b28b3 | 2010-02-09 23:09:17 +0100 | [diff] [blame] | 92 | core/java/android/app/IUiModeManager.aidl \ |
Dianne Hackborn | 8cc6a50 | 2009-08-05 21:29:42 -0700 | [diff] [blame] | 93 | core/java/android/app/IWallpaperManager.aidl \ |
| 94 | core/java/android/app/IWallpaperManagerCallback.aidl \ |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 95 | core/java/android/app/admin/IDevicePolicyManager.aidl \ |
Christopher Tate | 4528186 | 2010-03-05 15:46:30 -0800 | [diff] [blame] | 96 | core/java/android/app/backup/IBackupManager.aidl \ |
| 97 | core/java/android/app/backup/IRestoreObserver.aidl \ |
| 98 | core/java/android/app/backup/IRestoreSession.aidl \ |
Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 99 | core/java/android/bluetooth/IBluetooth.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 100 | core/java/android/bluetooth/IBluetoothA2dp.aidl \ |
Nick Pelly | 16fb88a | 2009-10-07 07:44:03 +0200 | [diff] [blame] | 101 | core/java/android/bluetooth/IBluetoothCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 102 | core/java/android/bluetooth/IBluetoothHeadset.aidl \ |
Jiafa Liu | 3f41673 | 2009-07-02 16:36:02 +0800 | [diff] [blame] | 103 | core/java/android/bluetooth/IBluetoothPbap.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 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 107 | core/java/android/content/ISyncAdapter.aidl \ |
| 108 | core/java/android/content/ISyncContext.aidl \ |
Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 109 | core/java/android/content/ISyncStatusObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 110 | core/java/android/content/pm/IPackageDataObserver.aidl \ |
| 111 | core/java/android/content/pm/IPackageDeleteObserver.aidl \ |
| 112 | core/java/android/content/pm/IPackageInstallObserver.aidl \ |
| 113 | core/java/android/content/pm/IPackageManager.aidl \ |
Suchi Amalapurapu | 8946dd3 | 2010-02-19 09:19:34 -0800 | [diff] [blame] | 114 | core/java/android/content/pm/IPackageMoveObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 115 | core/java/android/content/pm/IPackageStatsObserver.aidl \ |
| 116 | core/java/android/database/IContentObserver.aidl \ |
| 117 | core/java/android/hardware/ISensorService.aidl \ |
| 118 | core/java/android/net/IConnectivityManager.aidl \ |
San Mehat | 4d02d00 | 2010-01-22 16:07:46 -0800 | [diff] [blame] | 119 | core/java/android/net/INetworkManagementEventObserver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 120 | core/java/android/os/IMessenger.aidl \ |
San Mehat | b104340 | 2010-02-05 08:26:50 -0800 | [diff] [blame] | 121 | core/java/android/os/storage/IMountService.aidl \ |
| 122 | core/java/android/os/storage/IMountServiceListener.aidl \ |
Suchi Amalapurapu | 6ffce2e | 2010-03-08 14:48:40 -0800 | [diff] [blame] | 123 | core/java/android/os/storage/IMountShutdownObserver.aidl \ |
San Mehat | 873f214 | 2010-01-14 10:25:07 -0800 | [diff] [blame] | 124 | core/java/android/os/INetworkManagementService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 125 | core/java/android/os/INetStatService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 126 | core/java/android/os/IPermissionController.aidl \ |
| 127 | core/java/android/os/IPowerManager.aidl \ |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 128 | core/java/android/os/IRemoteCallback.aidl \ |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 129 | core/java/android/os/IVibratorService.aidl \ |
Patrick Scott | 45948fd | 2010-01-14 15:11:42 -0500 | [diff] [blame] | 130 | core/java/android/service/urlrenderer/IUrlRendererService.aidl \ |
| 131 | core/java/android/service/urlrenderer/IUrlRendererCallback.aidl \ |
Dianne Hackborn | 4c62fc0 | 2009-08-08 20:40:27 -0700 | [diff] [blame] | 132 | core/java/android/service/wallpaper/IWallpaperConnection.aidl \ |
| 133 | core/java/android/service/wallpaper/IWallpaperEngine.aidl \ |
Dianne Hackborn | 8cc6a50 | 2009-08-05 21:29:42 -0700 | [diff] [blame] | 134 | core/java/android/service/wallpaper/IWallpaperService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 135 | core/java/android/text/IClipboard.aidl \ |
svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 136 | core/java/android/view/accessibility/IAccessibilityManager.aidl \ |
| 137 | core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 138 | core/java/android/view/IApplicationToken.aidl \ |
| 139 | core/java/android/view/IOnKeyguardExitResult.aidl \ |
| 140 | core/java/android/view/IRotationWatcher.aidl \ |
| 141 | core/java/android/view/IWindow.aidl \ |
| 142 | core/java/android/view/IWindowManager.aidl \ |
| 143 | core/java/android/view/IWindowSession.aidl \ |
Alex Gruenstein | 361ec77 | 2009-09-15 11:19:58 -0700 | [diff] [blame] | 144 | core/java/android/speech/IRecognitionListener.aidl \ |
| 145 | core/java/android/speech/IRecognitionService.aidl \ |
Charles Chen | f85aa5a | 2009-06-10 10:39:55 -0700 | [diff] [blame] | 146 | core/java/android/speech/tts/ITts.aidl \ |
| 147 | core/java/android/speech/tts/ITtsCallback.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 148 | core/java/com/android/internal/app/IBatteryStats.aidl \ |
| 149 | core/java/com/android/internal/app/IUsageStats.aidl \ |
Suchi Amalapurapu | c028be4 | 2010-01-25 12:19:12 -0800 | [diff] [blame] | 150 | core/java/com/android/internal/app/IMediaContainerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 151 | core/java/com/android/internal/appwidget/IAppWidgetService.aidl \ |
| 152 | core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \ |
Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 153 | core/java/com/android/internal/backup/IBackupTransport.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 154 | core/java/com/android/internal/os/IDropBoxManagerService.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 155 | core/java/com/android/internal/os/IResultReceiver.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 156 | core/java/com/android/internal/view/IInputContext.aidl \ |
| 157 | core/java/com/android/internal/view/IInputContextCallback.aidl \ |
| 158 | core/java/com/android/internal/view/IInputMethod.aidl \ |
| 159 | core/java/com/android/internal/view/IInputMethodCallback.aidl \ |
| 160 | core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 161 | core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 162 | core/java/com/android/internal/view/IInputMethodSession.aidl \ |
Mike Lockwood | a55c321 | 2009-04-15 11:10:11 -0400 | [diff] [blame] | 163 | location/java/android/location/IGeocodeProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 164 | location/java/android/location/IGpsStatusListener.aidl \ |
Mike Lockwood | 15e3d0f | 2009-05-01 07:53:28 -0400 | [diff] [blame] | 165 | location/java/android/location/IGpsStatusProvider.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 166 | location/java/android/location/ILocationListener.aidl \ |
| 167 | location/java/android/location/ILocationManager.aidl \ |
Mike Lockwood | c1e8aa4 | 2009-04-06 10:52:24 -0700 | [diff] [blame] | 168 | location/java/android/location/ILocationProvider.aidl \ |
Danke Xie | 22d1f9f | 2009-08-18 18:28:45 -0400 | [diff] [blame] | 169 | location/java/android/location/INetInitiatedListener.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 170 | media/java/android/media/IAudioService.aidl \ |
Jean-Michel Trivi | d5176cf | 2010-01-28 11:56:42 -0800 | [diff] [blame] | 171 | media/java/android/media/IAudioFocusDispatcher.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 172 | media/java/android/media/IMediaScannerListener.aidl \ |
| 173 | media/java/android/media/IMediaScannerService.aidl \ |
| 174 | telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ |
| 175 | telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
| 176 | telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
| 177 | telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ |
Wink Saville | 04e71b3 | 2009-04-02 11:00:54 -0700 | [diff] [blame] | 178 | telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \ |
| 179 | telephony/java/com/android/internal/telephony/ISms.aidl \ |
John Wang | e91bc68 | 2009-03-27 18:24:06 -0700 | [diff] [blame] | 180 | wifi/java/android/net/wifi/IWifiManager.aidl \ |
Raphael | 9207b1e | 2009-06-08 21:57:16 -0700 | [diff] [blame] | 181 | telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \ |
Hung-ying Tyan | 55567ef | 2009-06-03 23:56:34 +0800 | [diff] [blame] | 182 | vpn/java/android/net/vpn/IVpnService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 183 | |
Doug Zongker | 45e6dbf | 2009-12-08 12:47:12 -0800 | [diff] [blame] | 184 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 185 | # FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk |
| 186 | LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 187 | |
| 188 | LOCAL_INTERMEDIATE_SOURCES := \ |
| 189 | $(framework-res-source-path)/android/R.java \ |
| 190 | $(framework-res-source-path)/android/Manifest.java \ |
| 191 | $(framework-res-source-path)/com/android/internal/R.java |
| 192 | |
| 193 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 194 | LOCAL_JAVA_LIBRARIES := core ext |
| 195 | |
| 196 | LOCAL_MODULE := framework |
| 197 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 198 | |
| 199 | # List of classes and interfaces which should be loaded by the Zygote. |
| 200 | LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes |
| 201 | |
| 202 | #LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt |
| 203 | |
| 204 | LOCAL_DX_FLAGS := --core-library |
| 205 | |
| 206 | include $(BUILD_JAVA_LIBRARY) |
| 207 | |
| 208 | # Make sure that R.java and Manifest.java are built before we build |
| 209 | # the source for this library. |
| 210 | framework_res_R_stamp := \ |
| 211 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp |
| 212 | $(full_classes_compiled_jar): $(framework_res_R_stamp) |
| 213 | |
| 214 | # Make sure that framework-res is installed when framework is. |
| 215 | $(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk |
| 216 | |
| 217 | framework_built := $(LOCAL_BUILT_MODULE) |
| 218 | |
| 219 | # AIDL files to be preprocessed and included in the SDK, |
| 220 | # relative to the root of the build tree. |
| 221 | # ============================================================ |
| 222 | aidl_files := \ |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 223 | frameworks/base/core/java/android/accounts/IAccountManager.aidl \ |
| 224 | frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \ |
| 225 | frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \ |
| 226 | frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 227 | frameworks/base/core/java/android/app/Notification.aidl \ |
| 228 | frameworks/base/core/java/android/app/PendingIntent.aidl \ |
Nick Pelly | 459ba86 | 2009-11-04 17:23:55 -0800 | [diff] [blame] | 229 | frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 230 | frameworks/base/core/java/android/content/ComponentName.aidl \ |
| 231 | frameworks/base/core/java/android/content/Intent.aidl \ |
Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 232 | frameworks/base/core/java/android/content/IntentSender.aidl \ |
Fred Quintana | c5d1c6d | 2010-01-27 12:17:49 -0800 | [diff] [blame] | 233 | frameworks/base/core/java/android/content/PeriodicSync.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 234 | frameworks/base/core/java/android/content/SyncStats.aidl \ |
| 235 | frameworks/base/core/java/android/content/res/Configuration.aidl \ |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 236 | frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 237 | frameworks/base/core/java/android/net/Uri.aidl \ |
| 238 | frameworks/base/core/java/android/os/Bundle.aidl \ |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 239 | frameworks/base/core/java/android/os/DropBoxManager.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 240 | frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \ |
Nick Pelly | aef439e | 2009-09-28 12:33:17 -0700 | [diff] [blame] | 241 | frameworks/base/core/java/android/os/ParcelUuid.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | frameworks/base/core/java/android/view/KeyEvent.aidl \ |
| 243 | frameworks/base/core/java/android/view/MotionEvent.aidl \ |
| 244 | frameworks/base/core/java/android/view/Surface.aidl \ |
| 245 | frameworks/base/core/java/android/view/WindowManager.aidl \ |
| 246 | frameworks/base/core/java/android/widget/RemoteViews.aidl \ |
| 247 | frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \ |
| 248 | frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \ |
| 249 | frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \ |
| 250 | frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \ |
| 251 | frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \ |
| 252 | frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \ |
| 253 | frameworks/base/graphics/java/android/graphics/Bitmap.aidl \ |
| 254 | frameworks/base/graphics/java/android/graphics/Rect.aidl \ |
| 255 | frameworks/base/graphics/java/android/graphics/Region.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 256 | frameworks/base/location/java/android/location/Criteria.aidl \ |
| 257 | frameworks/base/location/java/android/location/Location.aidl \ |
| 258 | frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ |
| 259 | frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ |
Raphael | d8b51a2 | 2009-06-08 22:05:22 -0700 | [diff] [blame] | 260 | frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \ |
Hung-ying Tyan | 55567ef | 2009-06-03 23:56:34 +0800 | [diff] [blame] | 261 | frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 262 | |
| 263 | gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl |
| 264 | $(gen): PRIVATE_SRC_FILES := $(aidl_files) |
| 265 | ALL_SDK_FILES += $(gen) |
| 266 | $(gen): $(aidl_files) | $(AIDL) |
| 267 | @echo Aidl Preprocess: $@ |
| 268 | $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES) |
| 269 | |
| 270 | # the documentation |
| 271 | # ============================================================ |
| 272 | |
| 273 | # TODO: deal with com/google/android/googleapps |
| 274 | packages_to_document := \ |
| 275 | android \ |
| 276 | javax/microedition/khronos |
| 277 | |
| 278 | # Search through the base framework dirs for these packages. |
| 279 | # The result will be relative to frameworks/base. |
| 280 | fwbase_dirs_to_document := \ |
Brett Chabot | e70f61b | 2010-02-19 10:49:27 -0800 | [diff] [blame] | 281 | test-runner/src \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 282 | $(patsubst $(LOCAL_PATH)/%,%, \ |
| 283 | $(wildcard \ |
| 284 | $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \ |
| 285 | $(addprefix $(dir)/, $(packages_to_document)) \ |
| 286 | ) \ |
| 287 | ) \ |
| 288 | ) |
| 289 | |
Dave Bort | a833cbb | 2009-04-22 17:33:12 -0700 | [diff] [blame] | 290 | # Pass a special "fake-out" version of some classes to the doc/API tools. |
| 291 | # ConfigBuildFlags uses this trick to prevent certain fields from appearing |
| 292 | # as "final" in the official SDK APIs. |
| 293 | fwbase_dirs_to_document += core/config/sdk |
| 294 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 295 | # These are relative to dalvik/libcore |
| 296 | # Intentionally not included from libcore: |
| 297 | # icu openssl suncompat support |
| 298 | libcore_to_document := \ |
| 299 | annotation/src/main/java/java \ |
| 300 | archive/src/main/java/java \ |
| 301 | auth/src/main/java/javax \ |
| 302 | awt-kernel/src/main/java/java \ |
| 303 | concurrent/src/main/java \ |
| 304 | crypto/src/main/java/javax \ |
| 305 | dalvik/src/main/java/dalvik \ |
| 306 | json/src/main/java \ |
| 307 | junit/src/main/java \ |
| 308 | logging/src/main/java/java \ |
| 309 | luni/src/main/java/java \ |
| 310 | luni-kernel/src/main/java/java \ |
| 311 | math/src/main/java/java \ |
| 312 | nio/src/main/java/java \ |
| 313 | nio_char/src/main/java/java \ |
| 314 | prefs/src/main/java/java \ |
| 315 | regex/src/main/java/java \ |
| 316 | security/src/main/java/java \ |
| 317 | security/src/main/java/javax \ |
| 318 | security-kernel/src/main/java/java \ |
| 319 | sql/src/main/java/java \ |
| 320 | sql/src/main/java/javax \ |
| 321 | text/src/main/java/java \ |
| 322 | x-net/src/main/java/javax \ |
| 323 | xml/src/main/java/javax \ |
| 324 | xml/src/main/java/org/xml/sax \ |
| 325 | xml/src/main/java/org/xmlpull/v1 \ |
| 326 | xml/src/main/java/org/w3c |
| 327 | |
| 328 | non_base_dirs := \ |
Dirk Balfanz | e599a9d | 2010-02-01 17:47:48 -0800 | [diff] [blame] | 329 | ../../external/apache-http/src/org/apache/http |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 330 | |
| 331 | # These are relative to frameworks/base |
| 332 | dirs_to_document := \ |
| 333 | $(fwbase_dirs_to_document) \ |
| 334 | $(non_base_dirs) \ |
| 335 | $(addprefix ../../dalvik/libcore/, $(libcore_to_document)) |
| 336 | |
| 337 | html_dirs := \ |
| 338 | $(FRAMEWORKS_BASE_SUBDIRS) \ |
| 339 | $(non_base_dirs) |
| 340 | |
| 341 | # These are relative to frameworks/base |
| 342 | framework_docs_LOCAL_SRC_FILES := \ |
| 343 | $(call find-other-java-files, $(dirs_to_document)) \ |
| 344 | $(call find-other-html-files, $(html_dirs)) |
| 345 | |
| 346 | framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \ |
| 347 | $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) |
| 348 | |
| 349 | framework_docs_LOCAL_INTERMEDIATE_SOURCES := \ |
| 350 | $(framework-res-source-path)/android/R.java \ |
| 351 | $(framework-res-source-path)/android/Manifest.java \ |
| 352 | $(framework-res-source-path)/com/android/internal/R.java |
| 353 | |
| 354 | framework_docs_LOCAL_JAVA_LIBRARIES := \ |
| 355 | core \ |
| 356 | ext \ |
Ying Wang | 6f95f46 | 2009-12-10 17:08:14 -0800 | [diff] [blame] | 357 | framework \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 358 | |
| 359 | framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 360 | framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html |
Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 361 | # The since flag (-since N.xml API_LEVEL) is used to add API Level information |
| 362 | # 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] | 363 | framework_docs_LOCAL_DROIDDOC_OPTIONS := \ |
Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 364 | -since ./frameworks/base/api/1.xml 1 \ |
| 365 | -since ./frameworks/base/api/2.xml 2 \ |
| 366 | -since ./frameworks/base/api/3.xml 3 \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 367 | -since ./frameworks/base/api/4.xml 4 \ |
Dirk Dougherty | ee58d1b | 2009-10-16 15:25:15 -0700 | [diff] [blame] | 368 | -since ./frameworks/base/api/5.xml 5 \ |
Dirk Dougherty | bca9f1b | 2009-11-18 23:06:16 -0800 | [diff] [blame] | 369 | -since ./frameworks/base/api/6.xml 6 \ |
Scott Main | f0cdfa9 | 2009-12-16 21:41:10 -0800 | [diff] [blame] | 370 | -since ./frameworks/base/api/7.xml 7 \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 371 | -error 1 -error 2 -warning 3 -error 4 -error 6 -error 8 \ |
| 372 | -overview $(LOCAL_PATH)/core/java/overview.html |
| 373 | |
| 374 | framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework) |
| 375 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 376 | sample_dir := development/samples |
| 377 | |
Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 378 | # the list here should match the list of samples included in the sdk samples package |
| 379 | # (see development/build/sdk.atree) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 380 | web_docs_sample_code_flags := \ |
| 381 | -hdf android.hasSamples 1 \ |
| 382 | -samplecode $(sample_dir)/ApiDemos \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 383 | resources/samples/ApiDemos "API Demos" \ |
| 384 | -samplecode $(sample_dir)/BluetoothChat \ |
| 385 | resources/samples/BluetoothChat "Bluetooth Chat" \ |
Trevor Johns | 2187e240 | 2010-01-07 16:26:39 -0800 | [diff] [blame] | 386 | -samplecode $(sample_dir)/BusinessCard \ |
| 387 | resources/samples/BusinessCard "Business Card" \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 388 | -samplecode $(sample_dir)/ContactManager \ |
| 389 | resources/samples/ContactManager "Contact Manager" \ |
Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 390 | -samplecode $(sample_dir)/CubeLiveWallpaper \ |
| 391 | resources/samples/CubeLiveWallpaper "Live Wallpaper" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 392 | -samplecode $(sample_dir)/Home \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 393 | resources/samples/Home "Home" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 394 | -samplecode $(sample_dir)/JetBoy \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 395 | resources/samples/JetBoy "JetBoy" \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 396 | -samplecode $(sample_dir)/LunarLander \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 397 | resources/samples/LunarLander "Lunar Lander" \ |
| 398 | -samplecode $(sample_dir)/MultiResolution \ |
| 399 | resources/samples/MultiResolution "Multiple Resolutions" \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 400 | -samplecode $(sample_dir)/NotePad \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 401 | resources/samples/NotePad "Note Pad" \ |
Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 402 | -samplecode $(sample_dir)/SampleSyncAdapter \ |
| 403 | resources/samples/SampleSyncAdapter "Sample Sync Adapter" \ |
Scott Main | 689d16b | 2009-08-29 13:17:53 -0700 | [diff] [blame] | 404 | -samplecode $(sample_dir)/SearchableDictionary \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 405 | resources/samples/SearchableDictionary "Searchable Dictionary" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 406 | -samplecode $(sample_dir)/Snake \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 407 | resources/samples/Snake "Snake" \ |
Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 408 | -samplecode $(sample_dir)/SoftKeyboard \ |
Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 409 | resources/samples/SoftKeyboard "Soft Keyboard" \ |
| 410 | -samplecode $(sample_dir)/Wiktionary \ |
| 411 | resources/samples/Wiktionary "Wiktionary" \ |
| 412 | -samplecode $(sample_dir)/WiktionarySimple \ |
Mike LeBeau | 9c57aca | 2010-02-12 14:09:55 -0800 | [diff] [blame] | 413 | resources/samples/WiktionarySimple "Wiktionary (Simplified)" \ |
| 414 | -samplecode $(sample_dir)/VoiceRecognitionService \ |
| 415 | resources/samples/VoiceRecognitionService "Voice Recognition Service" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 416 | |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 417 | ## SDK version identifiers used in the published docs |
| 418 | # major[.minor] version for current SDK. (full releases only) |
Dirk Dougherty | ab2c0a4 | 2010-01-28 17:50:10 -0800 | [diff] [blame] | 419 | framework_docs_SDK_VERSION:=2.1 |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 420 | # release version (ie "Release x") (full releases only) |
Dirk Dougherty | a6602f1 | 2009-08-27 16:26:43 -0700 | [diff] [blame] | 421 | framework_docs_SDK_REL_ID:=1 |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 422 | # name of current SDK directory (full releases only) |
| 423 | framework_docs_SDK_CURRENT_DIR:=$(framework_docs_SDK_VERSION)_r$(framework_docs_SDK_REL_ID) |
| 424 | # flag to build offline docs for a preview release |
Dirk Dougherty | a6602f1 | 2009-08-27 16:26:43 -0700 | [diff] [blame] | 425 | framework_docs_SDK_PREVIEW:=0 |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 426 | |
Dirk Dougherty | ee58d1b | 2009-10-16 15:25:15 -0700 | [diff] [blame] | 427 | ## Latest ADT version identifiers, for reference from published docs |
Dirk Dougherty | 7b229ef | 2010-03-26 17:32:26 -0700 | [diff] [blame] | 428 | framework_docs_ADT_VERSION:=0.9.6 |
| 429 | framework_docs_ADT_DOWNLOAD:=ADT-0.9.6.zip |
| 430 | framework_docs_ADT_BYTES:=7456339 |
| 431 | framework_docs_ADT_CHECKSUM:=ea45d271be52b87b5dd1c9fb17536223 |
Dirk Dougherty | ee58d1b | 2009-10-16 15:25:15 -0700 | [diff] [blame] | 432 | |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 433 | framework_docs_LOCAL_DROIDDOC_OPTIONS += \ |
| 434 | -hdf sdk.version $(framework_docs_SDK_VERSION) \ |
| 435 | -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \ |
Dirk Dougherty | ee58d1b | 2009-10-16 15:25:15 -0700 | [diff] [blame] | 436 | -hdf sdk.current $(framework_docs_SDK_CURRENT_DIR) \ |
| 437 | -hdf adt.zip.version $(framework_docs_ADT_VERSION) \ |
| 438 | -hdf adt.zip.download $(framework_docs_ADT_DOWNLOAD) \ |
| 439 | -hdf adt.zip.bytes $(framework_docs_ADT_BYTES) \ |
| 440 | -hdf adt.zip.checksum $(framework_docs_ADT_CHECKSUM) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 441 | |
Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 442 | # ==== the api stubs and current.xml =========================== |
| 443 | include $(CLEAR_VARS) |
| 444 | |
| 445 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 446 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 447 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 448 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 449 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 450 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 451 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
| 452 | |
| 453 | LOCAL_MODULE := api-stubs |
| 454 | |
| 455 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 456 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 457 | -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \ |
| 458 | -apixml $(INTERNAL_PLATFORM_API_FILE) \ |
| 459 | -nodocs |
| 460 | |
| 461 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 462 | LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk |
| 463 | |
| 464 | include $(BUILD_DROIDDOC) |
| 465 | |
| 466 | $(full_target): $(framework_built) |
| 467 | $(INTERNAL_PLATFORM_API_FILE): $(full_target) |
| 468 | $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE)) |
| 469 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 470 | # ==== static html in the sdk ================================== |
| 471 | include $(CLEAR_VARS) |
| 472 | |
| 473 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 474 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 475 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 476 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 477 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 478 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 479 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
| 480 | |
| 481 | LOCAL_MODULE := offline-sdk |
| 482 | |
| 483 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 484 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
Scott Main | 820a4e7 | 2009-11-19 20:19:49 -0800 | [diff] [blame] | 485 | $(web_docs_sample_code_flags) \ |
Scott Main | 0216946 | 2009-11-20 10:44:21 -0800 | [diff] [blame] | 486 | -offlinemode \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 487 | -title "Android SDK" \ |
| 488 | -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ |
| 489 | -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 490 | -sdkvalues $(OUT_DOCS) \ |
Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 491 | -hdf android.whichdoc offline |
| 492 | |
| 493 | ifeq ($(framework_docs_SDK_PREVIEW),true) |
| 494 | LOCAL_DROIDDOC_OPTIONS += -hdf sdk.current preview |
| 495 | endif |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 496 | |
| 497 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 498 | LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk |
| 499 | |
| 500 | include $(BUILD_DROIDDOC) |
| 501 | |
| 502 | static_doc_index_redirect := $(out_dir)/index.html |
| 503 | $(static_doc_index_redirect): \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 504 | $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 505 | $(hide) mkdir -p $(dir $@) |
| 506 | $(hide) $(ACP) $< $@ |
| 507 | |
| 508 | $(full_target): $(static_doc_index_redirect) |
| 509 | $(full_target): $(framework_built) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 510 | |
| 511 | |
| 512 | # ==== docs for the web (on the google app engine server) ======================= |
| 513 | include $(CLEAR_VARS) |
| 514 | |
| 515 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 516 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 517 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) |
| 518 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) |
| 519 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 520 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 521 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 522 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) |
| 523 | |
| 524 | LOCAL_MODULE := online-sdk |
| 525 | |
| 526 | LOCAL_DROIDDOC_OPTIONS:= \ |
Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 527 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 528 | $(web_docs_sample_code_flags) \ |
| 529 | -toroot / \ |
Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 530 | -hdf android.whichdoc online \ |
| 531 | -hdf template.showLanguageMenu true |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 532 | |
| 533 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 534 | LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk |
| 535 | |
| 536 | include $(BUILD_DROIDDOC) |
| 537 | |
Ying Wang | db328ab | 2009-10-27 11:00:30 -0700 | [diff] [blame] | 538 | # explicitly specify that online-sdk depends on framework-res. |
| 539 | $(full_target): framework-res-package-target |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 540 | |
| 541 | # ==== docs that have all of the stuff that's @hidden ======================= |
| 542 | include $(CLEAR_VARS) |
| 543 | |
| 544 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) |
| 545 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) |
| 546 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework |
| 547 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) |
| 548 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) |
| 549 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) |
| 550 | LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework) |
| 551 | |
| 552 | LOCAL_MODULE := hidden |
| 553 | LOCAL_DROIDDOC_OPTIONS:=\ |
| 554 | $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ |
| 555 | -title "Android SDK - Including hidden APIs." |
| 556 | # -hidden |
| 557 | |
| 558 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk |
| 559 | LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk |
| 560 | |
| 561 | include $(BUILD_DROIDDOC) |
| 562 | |
| 563 | # Build ext.jar |
| 564 | # ============================================================ |
| 565 | |
| 566 | ext_dirs := \ |
| 567 | ../../external/apache-http/src \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 568 | ../../external/tagsoup/src |
| 569 | |
| 570 | ext_src_files := $(call all-java-files-under,$(ext_dirs)) |
| 571 | |
| 572 | # ==== the library ========================================= |
| 573 | include $(CLEAR_VARS) |
| 574 | |
| 575 | LOCAL_SRC_FILES := $(ext_src_files) |
| 576 | |
| 577 | LOCAL_NO_STANDARD_LIBRARIES := true |
| 578 | LOCAL_JAVA_LIBRARIES := core |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 579 | |
| 580 | LOCAL_MODULE := ext |
| 581 | |
| 582 | include $(BUILD_JAVA_LIBRARY) |
| 583 | |
| 584 | |
| 585 | # Include subdirectory makefiles |
| 586 | # ============================================================ |
| 587 | |
| 588 | # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework |
| 589 | # team really wants is to build the stuff defined by this makefile. |
| 590 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 591 | include $(call first-makefiles-under,$(LOCAL_PATH)) |
| 592 | endif |