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