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