| 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 \ | 
 | 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 \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 89 | 	core/java/android/app/IThumbnailReceiver.aidl \ | 
 | 90 | 	core/java/android/app/ITransientNotification.aidl \ | 
| Tobias Haamel | 27b28b3 | 2010-02-09 23:09:17 +0100 | [diff] [blame] | 91 | 	core/java/android/app/IUiModeManager.aidl \ | 
| Dianne Hackborn | 8cc6a50 | 2009-08-05 21:29:42 -0700 | [diff] [blame] | 92 | 	core/java/android/app/IWallpaperManager.aidl \ | 
 | 93 | 	core/java/android/app/IWallpaperManagerCallback.aidl \ | 
| Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 94 | 	core/java/android/app/admin/IDevicePolicyManager.aidl \ | 
| Christopher Tate | 4528186 | 2010-03-05 15:46:30 -0800 | [diff] [blame] | 95 | 	core/java/android/app/backup/IBackupManager.aidl \ | 
 | 96 | 	core/java/android/app/backup/IRestoreObserver.aidl \ | 
 | 97 | 	core/java/android/app/backup/IRestoreSession.aidl \ | 
| Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 98 | 	core/java/android/bluetooth/IBluetooth.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 99 | 	core/java/android/bluetooth/IBluetoothA2dp.aidl \ | 
| Nick Pelly | 16fb88a | 2009-10-07 07:44:03 +0200 | [diff] [blame] | 100 | 	core/java/android/bluetooth/IBluetoothCallback.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 101 | 	core/java/android/bluetooth/IBluetoothHeadset.aidl \ | 
| Jiafa Liu | 3f41673 | 2009-07-02 16:36:02 +0800 | [diff] [blame] | 102 | 	core/java/android/bluetooth/IBluetoothPbap.aidl \ | 
| Dianne Hackborn | 9f53119 | 2010-08-04 17:48:03 -0700 | [diff] [blame] | 103 | 	core/java/android/content/IClipboard.aidl \ | 
| Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 104 | 	core/java/android/content/IContentService.aidl \ | 
| Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 105 | 	core/java/android/content/IIntentReceiver.aidl \ | 
 | 106 | 	core/java/android/content/IIntentSender.aidl \ | 
| Dianne Hackborn | 9f53119 | 2010-08-04 17:48:03 -0700 | [diff] [blame] | 107 | 	core/java/android/content/IOnPrimaryClipChangedListener.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 108 | 	core/java/android/content/ISyncAdapter.aidl \ | 
 | 109 | 	core/java/android/content/ISyncContext.aidl \ | 
| Dianne Hackborn | b06ea70 | 2009-07-13 13:07:51 -0700 | [diff] [blame] | 110 | 	core/java/android/content/ISyncStatusObserver.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | 	core/java/android/content/pm/IPackageDataObserver.aidl \ | 
 | 112 | 	core/java/android/content/pm/IPackageDeleteObserver.aidl \ | 
 | 113 | 	core/java/android/content/pm/IPackageInstallObserver.aidl \ | 
 | 114 | 	core/java/android/content/pm/IPackageManager.aidl \ | 
| Suchi Amalapurapu | 8946dd3 | 2010-02-19 09:19:34 -0800 | [diff] [blame] | 115 | 	core/java/android/content/pm/IPackageMoveObserver.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 116 | 	core/java/android/content/pm/IPackageStatsObserver.aidl \ | 
 | 117 | 	core/java/android/database/IContentObserver.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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 \ | 
| Mike Lockwood | eb9cbb8 | 2010-05-17 17:27:30 -0400 | [diff] [blame] | 120 | 	core/java/android/net/IThrottleManager.aidl \ | 
| Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 121 | 	core/java/android/nfc/ILlcpConnectionlessSocket.aidl \ | 
 | 122 | 	core/java/android/nfc/ILlcpServiceSocket.aidl \ | 
 | 123 | 	core/java/android/nfc/ILlcpSocket.aidl \ | 
 | 124 | 	core/java/android/nfc/INdefTag.aidl \ | 
 | 125 | 	core/java/android/nfc/INfcAdapter.aidl \ | 
 | 126 | 	core/java/android/nfc/INfcTag.aidl \ | 
 | 127 | 	core/java/android/nfc/IP2pInitiator.aidl \ | 
 | 128 | 	core/java/android/nfc/IP2pTarget.aidl \ | 
| Mike Lockwood | eb9cbb8 | 2010-05-17 17:27:30 -0400 | [diff] [blame] | 129 | 	core/java/android/os/IHardwareService.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 130 | 	core/java/android/os/IMessenger.aidl \ | 
| San Mehat | 873f214 | 2010-01-14 10:25:07 -0800 | [diff] [blame] | 131 | 	core/java/android/os/INetworkManagementService.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 132 | 	core/java/android/os/INetStatService.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 133 | 	core/java/android/os/IPermissionController.aidl \ | 
 | 134 | 	core/java/android/os/IPowerManager.aidl \ | 
| Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 135 |     core/java/android/os/IRemoteCallback.aidl \ | 
| Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 136 | 	core/java/android/os/IVibratorService.aidl \ | 
| Dianne Hackborn | 4c62fc0 | 2009-08-08 20:40:27 -0700 | [diff] [blame] | 137 |     core/java/android/service/wallpaper/IWallpaperConnection.aidl \ | 
 | 138 |     core/java/android/service/wallpaper/IWallpaperEngine.aidl \ | 
| Dianne Hackborn | 8cc6a50 | 2009-08-05 21:29:42 -0700 | [diff] [blame] | 139 |     core/java/android/service/wallpaper/IWallpaperService.aidl \ | 
| svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 140 | 	core/java/android/view/accessibility/IAccessibilityManager.aidl \ | 
 | 141 | 	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 142 | 	core/java/android/view/IApplicationToken.aidl \ | 
 | 143 | 	core/java/android/view/IOnKeyguardExitResult.aidl \ | 
 | 144 | 	core/java/android/view/IRotationWatcher.aidl \ | 
 | 145 | 	core/java/android/view/IWindow.aidl \ | 
 | 146 | 	core/java/android/view/IWindowManager.aidl \ | 
 | 147 | 	core/java/android/view/IWindowSession.aidl \ | 
| Alex Gruenstein | 361ec77 | 2009-09-15 11:19:58 -0700 | [diff] [blame] | 148 | 	core/java/android/speech/IRecognitionListener.aidl \ | 
 | 149 | 	core/java/android/speech/IRecognitionService.aidl \ | 
| Charles Chen | f85aa5a | 2009-06-10 10:39:55 -0700 | [diff] [blame] | 150 | 	core/java/android/speech/tts/ITts.aidl \ | 
 | 151 | 	core/java/android/speech/tts/ITtsCallback.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 152 | 	core/java/com/android/internal/app/IBatteryStats.aidl \ | 
 | 153 | 	core/java/com/android/internal/app/IUsageStats.aidl \ | 
| Suchi Amalapurapu | c028be4 | 2010-01-25 12:19:12 -0800 | [diff] [blame] | 154 | 	core/java/com/android/internal/app/IMediaContainerService.aidl \ | 
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 155 | 	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \ | 
 | 156 | 	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \ | 
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 157 | 	core/java/com/android/internal/backup/IBackupTransport.aidl \ | 
| Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 158 | 	core/java/com/android/internal/os/IDropBoxManagerService.aidl \ | 
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 159 | 	core/java/com/android/internal/os/IResultReceiver.aidl \ | 
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 160 | 	core/java/com/android/internal/statusbar/IStatusBar.aidl \ | 
 | 161 | 	core/java/com/android/internal/statusbar/IStatusBarService.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | 	core/java/com/android/internal/view/IInputContext.aidl \ | 
 | 163 | 	core/java/com/android/internal/view/IInputContextCallback.aidl \ | 
 | 164 | 	core/java/com/android/internal/view/IInputMethod.aidl \ | 
 | 165 | 	core/java/com/android/internal/view/IInputMethodCallback.aidl \ | 
 | 166 | 	core/java/com/android/internal/view/IInputMethodClient.aidl \ | 
 | 167 | 	core/java/com/android/internal/view/IInputMethodManager.aidl \ | 
 | 168 | 	core/java/com/android/internal/view/IInputMethodSession.aidl \ | 
| Winson Chung | 499cb9f | 2010-07-16 11:18:17 -0700 | [diff] [blame] | 169 | 	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \ | 
| Bai Tao | a58a875 | 2010-07-13 15:32:16 +0800 | [diff] [blame] | 170 | 	location/java/android/location/ICountryDetector.aidl \ | 
 | 171 | 	location/java/android/location/ICountryListener.aidl \ | 
| Mike Lockwood | a55c321 | 2009-04-15 11:10:11 -0400 | [diff] [blame] | 172 | 	location/java/android/location/IGeocodeProvider.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 173 | 	location/java/android/location/IGpsStatusListener.aidl \ | 
| Mike Lockwood | 15e3d0f | 2009-05-01 07:53:28 -0400 | [diff] [blame] | 174 | 	location/java/android/location/IGpsStatusProvider.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 175 | 	location/java/android/location/ILocationListener.aidl \ | 
 | 176 | 	location/java/android/location/ILocationManager.aidl \ | 
| Mike Lockwood | c1e8aa4 | 2009-04-06 10:52:24 -0700 | [diff] [blame] | 177 | 	location/java/android/location/ILocationProvider.aidl \ | 
| Danke Xie | 22d1f9f | 2009-08-18 18:28:45 -0400 | [diff] [blame] | 178 | 	location/java/android/location/INetInitiatedListener.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 179 | 	media/java/android/media/IAudioService.aidl \ | 
| Jean-Michel Trivi | d5176cf | 2010-01-28 11:56:42 -0800 | [diff] [blame] | 180 | 	media/java/android/media/IAudioFocusDispatcher.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 181 | 	media/java/android/media/IMediaScannerListener.aidl \ | 
 | 182 | 	media/java/android/media/IMediaScannerService.aidl \ | 
 | 183 | 	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ | 
 | 184 | 	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ | 
 | 185 | 	telephony/java/com/android/internal/telephony/ITelephony.aidl \ | 
 | 186 | 	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ | 
| Wink Saville | 04e71b3 | 2009-04-02 11:00:54 -0700 | [diff] [blame] | 187 | 	telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \ | 
 | 188 | 	telephony/java/com/android/internal/telephony/ISms.aidl \ | 
| John Wang | e91bc68 | 2009-03-27 18:24:06 -0700 | [diff] [blame] | 189 | 	wifi/java/android/net/wifi/IWifiManager.aidl \ | 
| Raphael | 9207b1e | 2009-06-08 21:57:16 -0700 | [diff] [blame] | 190 | 	telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \ | 
| Hung-ying Tyan | 55567ef | 2009-06-03 23:56:34 +0800 | [diff] [blame] | 191 | 	vpn/java/android/net/vpn/IVpnService.aidl \ | 
| Chung-yih Wang | 2d94231 | 2010-08-05 12:17:37 +0800 | [diff] [blame] | 192 | 	voip/java/android/net/sip/ISipSession.aidl \ | 
 | 193 | 	voip/java/android/net/sip/ISipSessionListener.aidl \ | 
 | 194 | 	voip/java/android/net/sip/ISipService.aidl | 
 | 195 | # | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 196 |  | 
| Doug Zongker | 45e6dbf | 2009-12-08 12:47:12 -0800 | [diff] [blame] | 197 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 198 | # FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk | 
 | 199 | LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) | 
 | 200 |  | 
 | 201 | LOCAL_INTERMEDIATE_SOURCES := \ | 
| Joe Onorato | 80a60ba | 2010-07-14 19:58:30 -0700 | [diff] [blame] | 202 | 			$(framework_res_source_path)/android/R.java \ | 
 | 203 | 			$(framework_res_source_path)/android/Manifest.java \ | 
 | 204 | 			$(framework_res_source_path)/com/android/internal/R.java | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 205 |  | 
 | 206 | LOCAL_NO_STANDARD_LIBRARIES := true | 
| Brian Carlstrom | 570bb56 | 2010-06-30 00:54:29 -0700 | [diff] [blame] | 207 | LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 208 |  | 
 | 209 | LOCAL_MODULE := framework | 
 | 210 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES | 
 | 211 |  | 
| Guang Zhu | ac07519 | 2010-03-16 19:08:54 -0700 | [diff] [blame] | 212 | LOCAL_NO_EMMA_INSTRUMENT := true | 
 | 213 | LOCAL_NO_EMMA_COMPILE := true | 
 | 214 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 215 | # List of classes and interfaces which should be loaded by the Zygote. | 
 | 216 | LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes | 
 | 217 |  | 
 | 218 | #LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt | 
 | 219 |  | 
 | 220 | LOCAL_DX_FLAGS := --core-library | 
 | 221 |  | 
 | 222 | include $(BUILD_JAVA_LIBRARY) | 
 | 223 |  | 
 | 224 | # Make sure that R.java and Manifest.java are built before we build | 
 | 225 | # the source for this library. | 
 | 226 | framework_res_R_stamp := \ | 
 | 227 | 	$(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp | 
 | 228 | $(full_classes_compiled_jar): $(framework_res_R_stamp) | 
 | 229 |  | 
 | 230 | # Make sure that framework-res is installed when framework is. | 
 | 231 | $(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk | 
 | 232 |  | 
 | 233 | framework_built := $(LOCAL_BUILT_MODULE) | 
 | 234 |  | 
 | 235 | # AIDL files to be preprocessed and included in the SDK, | 
 | 236 | # relative to the root of the build tree. | 
 | 237 | # ============================================================ | 
 | 238 | aidl_files := \ | 
| Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 239 | 	frameworks/base/core/java/android/accounts/IAccountManager.aidl \ | 
 | 240 | 	frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \ | 
 | 241 | 	frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \ | 
 | 242 | 	frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 | 	frameworks/base/core/java/android/app/Notification.aidl \ | 
 | 244 | 	frameworks/base/core/java/android/app/PendingIntent.aidl \ | 
| Nick Pelly | 459ba86 | 2009-11-04 17:23:55 -0800 | [diff] [blame] | 245 | 	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 246 | 	frameworks/base/core/java/android/content/ComponentName.aidl \ | 
 | 247 | 	frameworks/base/core/java/android/content/Intent.aidl \ | 
| Suchi Amalapurapu | 1ccac75 | 2009-06-12 10:09:58 -0700 | [diff] [blame] | 248 | 	frameworks/base/core/java/android/content/IntentSender.aidl \ | 
| Fred Quintana | c5d1c6d | 2010-01-27 12:17:49 -0800 | [diff] [blame] | 249 | 	frameworks/base/core/java/android/content/PeriodicSync.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 250 | 	frameworks/base/core/java/android/content/SyncStats.aidl \ | 
 | 251 | 	frameworks/base/core/java/android/content/res/Configuration.aidl \ | 
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 252 | 	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 253 | 	frameworks/base/core/java/android/net/Uri.aidl \ | 
| Nick Pelly | f36c6db | 2010-10-14 19:16:35 -0700 | [diff] [blame] | 254 | 	frameworks/base/core/java/android/nfc/NdefMessage.aidl \ | 
 | 255 | 	frameworks/base/core/java/android/nfc/NdefRecord.aidl \ | 
 | 256 | 	frameworks/base/core/java/android/nfc/Tag.aidl \ | 
 | 257 | 	frameworks/base/core/java/android/nfc/NdefTag.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | 	frameworks/base/core/java/android/os/Bundle.aidl \ | 
| Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 259 | 	frameworks/base/core/java/android/os/DropBoxManager.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 260 | 	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \ | 
| Nick Pelly | aef439e | 2009-09-28 12:33:17 -0700 | [diff] [blame] | 261 | 	frameworks/base/core/java/android/os/ParcelUuid.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 262 | 	frameworks/base/core/java/android/view/KeyEvent.aidl \ | 
 | 263 | 	frameworks/base/core/java/android/view/MotionEvent.aidl \ | 
 | 264 | 	frameworks/base/core/java/android/view/Surface.aidl \ | 
 | 265 | 	frameworks/base/core/java/android/view/WindowManager.aidl \ | 
 | 266 | 	frameworks/base/core/java/android/widget/RemoteViews.aidl \ | 
 | 267 | 	frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \ | 
 | 268 | 	frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \ | 
 | 269 | 	frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \ | 
 | 270 | 	frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \ | 
 | 271 | 	frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \ | 
 | 272 | 	frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \ | 
 | 273 | 	frameworks/base/graphics/java/android/graphics/Bitmap.aidl \ | 
 | 274 | 	frameworks/base/graphics/java/android/graphics/Rect.aidl \ | 
 | 275 | 	frameworks/base/graphics/java/android/graphics/Region.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 276 | 	frameworks/base/location/java/android/location/Criteria.aidl \ | 
 | 277 | 	frameworks/base/location/java/android/location/Location.aidl \ | 
 | 278 | 	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ | 
 | 279 | 	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ | 
| Raphael | d8b51a2 | 2009-06-08 22:05:22 -0700 | [diff] [blame] | 280 | 	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \ | 
| Hung-ying Tyan | 55567ef | 2009-06-03 23:56:34 +0800 | [diff] [blame] | 281 | 	frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 282 |  | 
 | 283 | gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl | 
 | 284 | $(gen): PRIVATE_SRC_FILES := $(aidl_files) | 
 | 285 | ALL_SDK_FILES += $(gen) | 
 | 286 | $(gen): $(aidl_files) | $(AIDL) | 
 | 287 | 		@echo Aidl Preprocess: $@ | 
 | 288 | 		$(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES) | 
 | 289 |  | 
 | 290 | # the documentation | 
 | 291 | # ============================================================ | 
 | 292 |  | 
 | 293 | # TODO: deal with com/google/android/googleapps | 
 | 294 | packages_to_document := \ | 
 | 295 | 	android \ | 
 | 296 | 	javax/microedition/khronos | 
 | 297 |  | 
 | 298 | # Search through the base framework dirs for these packages. | 
 | 299 | # The result will be relative to frameworks/base. | 
 | 300 | fwbase_dirs_to_document := \ | 
| Brett Chabot | e70f61b | 2010-02-19 10:49:27 -0800 | [diff] [blame] | 301 | 	test-runner/src \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 302 | 	$(patsubst $(LOCAL_PATH)/%,%, \ | 
 | 303 | 	  $(wildcard \ | 
 | 304 | 	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \ | 
 | 305 | 	      $(addprefix $(dir)/, $(packages_to_document)) \ | 
 | 306 | 	     ) \ | 
 | 307 | 	   ) \ | 
 | 308 | 	 ) | 
 | 309 |  | 
| Dave Bort | a833cbb | 2009-04-22 17:33:12 -0700 | [diff] [blame] | 310 | # Pass a special "fake-out" version of some classes to the doc/API tools. | 
 | 311 | # ConfigBuildFlags uses this trick to prevent certain fields from appearing | 
 | 312 | # as "final" in the official SDK APIs. | 
 | 313 | fwbase_dirs_to_document += core/config/sdk | 
 | 314 |  | 
| Jean-Baptiste Queru | 8d817f7 | 2010-04-30 10:13:34 -0700 | [diff] [blame] | 315 | # These are relative to libcore | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 316 | # Intentionally not included from libcore: | 
 | 317 | #     icu openssl suncompat support | 
 | 318 | libcore_to_document := \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 319 | 	dalvik/src/main/java/dalvik \ | 
 | 320 | 	json/src/main/java \ | 
 | 321 | 	junit/src/main/java \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 322 | 	luni/src/main/java/java \ | 
| Brian Carlstrom | f77cf7f | 2010-05-27 23:11:20 -0700 | [diff] [blame] | 323 | 	luni/src/main/java/javax \ | 
 | 324 | 	luni/src/main/java/org/xml/sax \ | 
 | 325 | 	luni/src/main/java/org/w3c \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 326 | 	xml/src/main/java/org/xmlpull/v1 \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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) \ | 
| Jean-Baptiste Queru | 8d817f7 | 2010-04-30 10:13:34 -0700 | [diff] [blame] | 335 | 	$(addprefix ../../libcore/, $(libcore_to_document)) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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 |  | 
| Joe Onorato | 626db91 | 2010-05-17 18:21:44 -0700 | [diff] [blame] | 346 | # This is used by ide.mk as the list of source files that are | 
 | 347 | # always included. | 
 | 348 | INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document)) | 
 | 349 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 350 | framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \ | 
 | 351 | 	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS) | 
 | 352 |  | 
 | 353 | framework_docs_LOCAL_INTERMEDIATE_SOURCES := \ | 
| Joe Onorato | 80a60ba | 2010-07-14 19:58:30 -0700 | [diff] [blame] | 354 | 			$(framework_res_source_path)/android/R.java \ | 
 | 355 | 			$(framework_res_source_path)/android/Manifest.java \ | 
 | 356 | 			$(framework_res_source_path)/com/android/internal/R.java | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 357 |  | 
 | 358 | framework_docs_LOCAL_JAVA_LIBRARIES := \ | 
| Brian Carlstrom | 570bb56 | 2010-06-30 00:54:29 -0700 | [diff] [blame] | 359 | 			bouncycastle \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 360 | 			core \ | 
 | 361 | 			ext \ | 
| Ying Wang | 6f95f46 | 2009-12-10 17:08:14 -0800 | [diff] [blame] | 362 | 			framework \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 363 |  | 
 | 364 | framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES | 
| Joe Onorato | 3fec2bf | 2010-08-27 15:05:39 -0400 | [diff] [blame] | 365 | framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html | 
| Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 366 | # The since flag (-since N.xml API_LEVEL) is used to add API Level information | 
 | 367 | # 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] | 368 | framework_docs_LOCAL_DROIDDOC_OPTIONS := \ | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 369 |     -knowntags ./frameworks/base/docs/knowntags.txt \ | 
| Scott Main | 6dceb76 | 2009-07-31 13:03:36 -0700 | [diff] [blame] | 370 |     -since ./frameworks/base/api/1.xml 1 \ | 
 | 371 |     -since ./frameworks/base/api/2.xml 2 \ | 
 | 372 |     -since ./frameworks/base/api/3.xml 3 \ | 
| Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 373 |     -since ./frameworks/base/api/4.xml 4 \ | 
| Dirk Dougherty | ee58d1b | 2009-10-16 15:25:15 -0700 | [diff] [blame] | 374 |     -since ./frameworks/base/api/5.xml 5 \ | 
| Dirk Dougherty | bca9f1b | 2009-11-18 23:06:16 -0800 | [diff] [blame] | 375 |     -since ./frameworks/base/api/6.xml 6 \ | 
| Scott Main | f0cdfa9 | 2009-12-16 21:41:10 -0800 | [diff] [blame] | 376 |     -since ./frameworks/base/api/7.xml 7 \ | 
| Scott Main | c4c696a | 2010-04-19 12:00:15 -0700 | [diff] [blame] | 377 |     -since ./frameworks/base/api/8.xml 8 \ | 
| Scott Main | e9ac4e2 | 2010-10-18 18:41:52 -0700 | [diff] [blame] | 378 |     -since ./frameworks/base/api/9.xml 9 \ | 
| Scott Main | 02a0992 | 2010-08-04 10:32:25 -0700 | [diff] [blame] | 379 |     -since ./frameworks/base/api/current.xml HC \ | 
| Joe Onorato | 0ba4ac7 | 2010-09-16 15:42:20 -0400 | [diff] [blame] | 380 | 		-werror -hide 113 \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 381 | 		-overview $(LOCAL_PATH)/core/java/overview.html | 
 | 382 |  | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 383 | framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework) | 
 | 384 |  | 
 | 385 | framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \ | 
 | 386 |     frameworks/base/docs/knowntags.txt | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 387 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 388 | sample_dir := development/samples | 
 | 389 |  | 
| Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 390 | # the list here should match the list of samples included in the sdk samples package | 
 | 391 | # (see development/build/sdk.atree) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 392 | web_docs_sample_code_flags := \ | 
 | 393 | 		-hdf android.hasSamples 1 \ | 
 | 394 | 		-samplecode $(sample_dir)/ApiDemos \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 395 | 		            resources/samples/ApiDemos "API Demos" \ | 
| Christopher Tate | e779bdc | 2010-04-07 11:15:45 -0700 | [diff] [blame] | 396 | 		-samplecode $(sample_dir)/BackupRestore \ | 
 | 397 | 		            resources/samples/BackupRestore "Backup and Restore" \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 398 | 		-samplecode $(sample_dir)/BluetoothChat \ | 
 | 399 | 		            resources/samples/BluetoothChat "Bluetooth Chat" \ | 
| Trevor Johns | 2187e240 | 2010-01-07 16:26:39 -0800 | [diff] [blame] | 400 | 		-samplecode $(sample_dir)/BusinessCard \ | 
 | 401 | 		            resources/samples/BusinessCard "Business Card" \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 402 | 		-samplecode $(sample_dir)/ContactManager \ | 
 | 403 | 		            resources/samples/ContactManager "Contact Manager" \ | 
| Dirk Dougherty | d323b4c | 2010-02-08 10:53:12 -0800 | [diff] [blame] | 404 |                 -samplecode $(sample_dir)/CubeLiveWallpaper \ | 
 | 405 |                             resources/samples/CubeLiveWallpaper "Live Wallpaper" \ | 
| Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 406 | 		-samplecode $(sample_dir)/Home \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 407 | 		            resources/samples/Home "Home" \ | 
| Dianne Hackborn | fef42db | 2010-06-04 13:38:43 -0700 | [diff] [blame] | 408 | 		-samplecode $(sample_dir)/HeavyWeight \ | 
 | 409 | 		            resources/samples/HeavyWeight "Heavy Weight App" \ | 
| Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 410 | 		-samplecode $(sample_dir)/JetBoy \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 411 | 		            resources/samples/JetBoy "JetBoy" \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 412 | 		-samplecode $(sample_dir)/LunarLander \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 413 | 		            resources/samples/LunarLander "Lunar Lander" \ | 
 | 414 | 		-samplecode $(sample_dir)/MultiResolution \ | 
 | 415 | 		            resources/samples/MultiResolution "Multiple Resolutions" \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 416 | 		-samplecode $(sample_dir)/NotePad \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 417 | 		            resources/samples/NotePad "Note Pad" \ | 
| Dianne Hackborn | fef42db | 2010-06-04 13:38:43 -0700 | [diff] [blame] | 418 | 		-samplecode $(sample_dir)/SampleSyncAdapter \ | 
 | 419 | 		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \ | 
| Scott Main | 689d16b | 2009-08-29 13:17:53 -0700 | [diff] [blame] | 420 | 		-samplecode $(sample_dir)/SearchableDictionary \ | 
| Scott Main | bf1d0b9 | 2010-05-07 15:08:36 -0700 | [diff] [blame] | 421 | 		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \ | 
| Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 422 | 		-samplecode $(sample_dir)/Snake \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 423 | 		            resources/samples/Snake "Snake" \ | 
| Scott Main | b385508 | 2009-08-24 14:45:00 -0700 | [diff] [blame] | 424 | 		-samplecode $(sample_dir)/SoftKeyboard \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 425 | 		            resources/samples/SoftKeyboard "Soft Keyboard" \ | 
| Joe Malin | e52c4a7 | 2010-04-14 14:40:59 -0700 | [diff] [blame] | 426 | 		-samplecode $(sample_dir)/Spinner  \ | 
 | 427 | 		            resources/samples/Spinner "Spinner" \ | 
 | 428 | 		-samplecode $(sample_dir)/SpinnerTest \ | 
 | 429 | 		            resources/samples/SpinnerTest "SpinnerTest" \ | 
| Dirk Dougherty | b32c240 | 2010-05-08 21:22:11 -0700 | [diff] [blame] | 430 | 		-samplecode $(sample_dir)/TicTacToeLib  \ | 
 | 431 | 		            resources/samples/TicTacToeLib "TicTacToeLib" \ | 
 | 432 | 		-samplecode $(sample_dir)/TicTacToeMain \ | 
 | 433 | 		            resources/samples/TicTacToeMain "TicTacToeMain" \ | 
| Dirk Dougherty | 22558d0 | 2009-12-10 16:25:06 -0800 | [diff] [blame] | 434 | 		-samplecode $(sample_dir)/Wiktionary \ | 
 | 435 | 		            resources/samples/Wiktionary "Wiktionary" \ | 
 | 436 | 		-samplecode $(sample_dir)/WiktionarySimple \ | 
| Mike LeBeau | 9c57aca | 2010-02-12 14:09:55 -0800 | [diff] [blame] | 437 | 		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \ | 
 | 438 | 		-samplecode $(sample_dir)/VoiceRecognitionService \ | 
| Gilles Debunne | 3eb9b66 | 2010-06-23 16:53:35 -0700 | [diff] [blame] | 439 | 		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \ | 
 | 440 | 		-samplecode $(sample_dir)/XmlAdapters \ | 
 | 441 | 		            resources/samples/XmlAdapters "XML Adapters" | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 442 |  | 
| Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 443 | ## SDK version identifiers used in the published docs | 
 | 444 |   # major[.minor] version for current SDK. (full releases only) | 
| Dirk Dougherty | 0d1b081 | 2010-04-07 17:05:16 -0700 | [diff] [blame] | 445 | framework_docs_SDK_VERSION:=2.2 | 
| Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 446 |   # release version (ie "Release x")  (full releases only) | 
| Dirk Dougherty | a6602f1 | 2009-08-27 16:26:43 -0700 | [diff] [blame] | 447 | framework_docs_SDK_REL_ID:=1 | 
| Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 448 |   # flag to build offline docs for a preview release | 
| Dirk Dougherty | a6602f1 | 2009-08-27 16:26:43 -0700 | [diff] [blame] | 449 | framework_docs_SDK_PREVIEW:=0 | 
| Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 450 |  | 
 | 451 | framework_docs_LOCAL_DROIDDOC_OPTIONS += \ | 
 | 452 | 		-hdf sdk.version $(framework_docs_SDK_VERSION) \ | 
| Dirk Dougherty | 9519eab | 2010-09-14 18:15:08 -0700 | [diff] [blame] | 453 | 		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 454 |  | 
| Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 455 | # ====  the api stubs and current.xml =========================== | 
 | 456 | include $(CLEAR_VARS) | 
 | 457 |  | 
 | 458 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) | 
 | 459 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) | 
 | 460 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) | 
 | 461 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) | 
 | 462 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) | 
 | 463 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) | 
 | 464 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 465 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) | 
| Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 466 |  | 
 | 467 | LOCAL_MODULE := api-stubs | 
 | 468 |  | 
 | 469 | LOCAL_DROIDDOC_OPTIONS:=\ | 
 | 470 | 		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ | 
 | 471 | 		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \ | 
 | 472 | 		-apixml $(INTERNAL_PLATFORM_API_FILE) \ | 
 | 473 | 		-nodocs | 
 | 474 |  | 
 | 475 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk | 
| Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 476 |  | 
| Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 477 | LOCAL_UNINSTALLABLE_MODULE := true | 
 | 478 |  | 
| Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 479 | include $(BUILD_DROIDDOC) | 
 | 480 |  | 
| Ying Wang | 6806457 | 2010-05-07 15:00:10 -0700 | [diff] [blame] | 481 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. | 
 | 482 | $(full_target): $(framework_built) $(gen) | 
| Joe Onorato | ccfca2e | 2009-07-20 11:57:12 -0400 | [diff] [blame] | 483 | $(INTERNAL_PLATFORM_API_FILE): $(full_target) | 
 | 484 | $(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE)) | 
 | 485 |  | 
| Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 486 | # ====  check javadoc comments but don't generate docs ======== | 
 | 487 | include $(CLEAR_VARS) | 
 | 488 |  | 
 | 489 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) | 
 | 490 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) | 
 | 491 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) | 
 | 492 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) | 
 | 493 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) | 
 | 494 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) | 
 | 495 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 496 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) | 
| Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 497 |  | 
 | 498 | LOCAL_MODULE := doc-comment-check | 
 | 499 |  | 
 | 500 | LOCAL_DROIDDOC_OPTIONS:=\ | 
 | 501 | 		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ | 
| Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 502 | 		-parsecomments | 
 | 503 |  | 
 | 504 | LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk | 
| Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 505 |  | 
| Joe Onorato | 7e3cf12 | 2010-09-01 10:41:35 -0700 | [diff] [blame] | 506 | LOCAL_UNINSTALLABLE_MODULE := true | 
 | 507 |  | 
| Joe Onorato | 4314e2e | 2010-08-27 17:13:22 -0400 | [diff] [blame] | 508 | include $(BUILD_DROIDDOC) | 
 | 509 |  | 
 | 510 | # $(gen), i.e. framework.aidl, is also needed while building against the current stub. | 
 | 511 | $(full_target): $(framework_built) $(gen) | 
 | 512 |  | 
 | 513 | droidcore: doc-comment-check-docs | 
 | 514 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 515 | # ====  static html in the sdk ================================== | 
 | 516 | include $(CLEAR_VARS) | 
 | 517 |  | 
 | 518 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) | 
 | 519 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) | 
 | 520 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) | 
 | 521 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) | 
 | 522 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) | 
 | 523 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) | 
 | 524 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 525 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 526 |  | 
 | 527 | LOCAL_MODULE := offline-sdk | 
 | 528 |  | 
 | 529 | LOCAL_DROIDDOC_OPTIONS:=\ | 
 | 530 | 		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ | 
| Scott Main | 820a4e7 | 2009-11-19 20:19:49 -0800 | [diff] [blame] | 531 |                 $(web_docs_sample_code_flags) \ | 
| Scott Main | 0216946 | 2009-11-20 10:44:21 -0800 | [diff] [blame] | 532 |                 -offlinemode \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 533 | 		-title "Android SDK" \ | 
 | 534 | 		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ | 
 | 535 | 		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 536 | 		-sdkvalues $(OUT_DOCS) \ | 
| Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 537 | 		-hdf android.whichdoc offline | 
| Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 538 |  | 
 | 539 | ifeq ($(framework_docs_SDK_PREVIEW),true) | 
| Dirk Dougherty | 9519eab | 2010-09-14 18:15:08 -0700 | [diff] [blame] | 540 |   LOCAL_DROIDDOC_OPTIONS += -hdf sdk.preview true | 
| Dirk Dougherty | f11d7d5 | 2009-08-05 19:04:18 -0700 | [diff] [blame] | 541 | endif | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 542 |  | 
 | 543 | 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] | 544 |  | 
 | 545 | include $(BUILD_DROIDDOC) | 
 | 546 |  | 
 | 547 | static_doc_index_redirect := $(out_dir)/index.html | 
 | 548 | $(static_doc_index_redirect): \ | 
| Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 549 | 	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 550 | 	$(hide) mkdir -p $(dir $@) | 
 | 551 | 	$(hide) $(ACP) $< $@ | 
 | 552 |  | 
 | 553 | $(full_target): $(static_doc_index_redirect) | 
 | 554 | $(full_target): $(framework_built) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 555 |  | 
 | 556 | # ==== docs for the web (on the google app engine server) ======================= | 
 | 557 | include $(CLEAR_VARS) | 
 | 558 |  | 
 | 559 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) | 
 | 560 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) | 
 | 561 | LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) | 
 | 562 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) | 
 | 563 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) | 
 | 564 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) | 
 | 565 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) | 
 | 566 | LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 567 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 568 |  | 
 | 569 | LOCAL_MODULE := online-sdk | 
 | 570 |  | 
 | 571 | LOCAL_DROIDDOC_OPTIONS:= \ | 
| Dirk Dougherty | 2e2c910 | 2009-04-20 17:56:34 -0700 | [diff] [blame] | 572 | 		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ | 
 | 573 | 		$(web_docs_sample_code_flags) \ | 
 | 574 | 		-toroot / \ | 
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 575 | 		-hdf android.whichdoc online \ | 
 | 576 | 		-hdf template.showLanguageMenu true | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 577 |  | 
 | 578 | 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] | 579 |  | 
 | 580 | include $(BUILD_DROIDDOC) | 
 | 581 |  | 
| Bill Napier | e7c9178 | 2010-08-25 18:13:02 -0700 | [diff] [blame] | 582 | # 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] | 583 | $(full_target): framework-res-package-target | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 584 |  | 
 | 585 | # ==== docs that have all of the stuff that's @hidden ======================= | 
 | 586 | include $(CLEAR_VARS) | 
 | 587 |  | 
 | 588 | LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) | 
 | 589 | LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) | 
 | 590 | LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework | 
 | 591 | LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) | 
 | 592 | LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) | 
 | 593 | LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) | 
 | 594 | LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework) | 
| Joe Onorato | d20e5d0 | 2010-09-16 11:56:03 -0400 | [diff] [blame] | 595 | LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 596 |  | 
 | 597 | LOCAL_MODULE := hidden | 
 | 598 | LOCAL_DROIDDOC_OPTIONS:=\ | 
 | 599 | 		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ | 
| Dirk Dougherty | 2053f91 | 2010-08-25 12:12:57 -0700 | [diff] [blame] | 600 | 		-title "Android SDK - Including hidden APIs." | 
 | 601 | #		-hidden | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 602 |  | 
 | 603 | 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] | 604 |  | 
 | 605 | include $(BUILD_DROIDDOC) | 
 | 606 |  | 
 | 607 | # Build ext.jar | 
 | 608 | # ============================================================ | 
 | 609 |  | 
| David Deephanphongs | 62f2ada | 2010-10-19 14:54:05 -0700 | [diff] [blame] | 610 | # NOTICE notes for non-obvious sections | 
 | 611 | # apache-http - covered by the Apache Commons section. | 
 | 612 |  | 
 | 613 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 614 | ext_dirs := \ | 
| Chung-yih Wang | 2d94231 | 2010-08-05 12:17:37 +0800 | [diff] [blame] | 615 | 	../../external/nist-sip/java \ | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 616 | 	../../external/apache-http/src \ | 
| Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 617 | 	../../external/tagsoup/src \ | 
 | 618 | 	../../external/libphonenumber/java/src | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 619 |  | 
 | 620 | ext_src_files := $(call all-java-files-under,$(ext_dirs)) | 
 | 621 |  | 
| Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 622 | ext_res_dirs := \ | 
 | 623 | 	../../external/libphonenumber/java/src | 
 | 624 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 625 | # ====  the library  ========================================= | 
 | 626 | include $(CLEAR_VARS) | 
 | 627 |  | 
 | 628 | LOCAL_SRC_FILES := $(ext_src_files) | 
 | 629 |  | 
 | 630 | LOCAL_NO_STANDARD_LIBRARIES := true | 
 | 631 | LOCAL_JAVA_LIBRARIES := core | 
| Bai Tao | ef4fd8e | 2010-06-07 10:25:53 +0800 | [diff] [blame] | 632 | LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs) | 
| Jesse Wilson | a145956 | 2010-09-16 17:50:43 -0700 | [diff] [blame] | 633 | LOCAL_MODULE_TAGS := optional | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 634 | LOCAL_MODULE := ext | 
 | 635 |  | 
| Guang Zhu | ac07519 | 2010-03-16 19:08:54 -0700 | [diff] [blame] | 636 | LOCAL_NO_EMMA_INSTRUMENT := true | 
 | 637 | LOCAL_NO_EMMA_COMPILE := true | 
 | 638 |  | 
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 639 | include $(BUILD_JAVA_LIBRARY) | 
 | 640 |  | 
 | 641 |  | 
 | 642 | # Include subdirectory makefiles | 
 | 643 | # ============================================================ | 
 | 644 |  | 
 | 645 | # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework | 
 | 646 | # team really wants is to build the stuff defined by this makefile. | 
 | 647 | ifeq (,$(ONE_SHOT_MAKEFILE)) | 
 | 648 | include $(call first-makefiles-under,$(LOCAL_PATH)) | 
 | 649 | endif |