Android.mk 35.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#
# Copyright (C) 2008 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
LOCAL_PATH := $(call my-dir)

# We have a special case here where we build the library's resources
# independently from its code, so we need to find where the resource
# class source got placed in the course of building the resources.
# Thus, the magic here.
# Also, this module cannot depend directly on the R.java file; if it
# did, the PRIVATE_* vars for R.java wouldn't be guaranteed to be correct.
# Instead, it depends on the R.stamp file, which lists the corresponding
# R.java file as a prerequisite.
# TODO: find a more appropriate way to do this.
27
framework_res_source_path := APPS/framework-res_intermediates/src
28 29 30 31 32 33 34 35

# the library
# ============================================================
include $(CLEAR_VARS)

# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))

36
# EventLogTags files.
37 38
LOCAL_SRC_FILES += \
       core/java/android/content/EventLogTags.logtags \
39
       core/java/android/speech/tts/EventLogTags.logtags \
40
       core/java/android/webkit/EventLogTags.logtags \
41

42 43 44 45 46 47 48 49 50 51
# The following filters out code we are temporarily not including at all.
# TODO: Move AWT and beans (and associated harmony code) back into libcore.
# TODO: Maybe remove javax.microedition entirely?
# TODO: Move SyncML (org.mobilecontrol.*) into its own library.
LOCAL_SRC_FILES := $(filter-out \
			org/mobilecontrol/% \
			,$(LOCAL_SRC_FILES))

## READ ME: ########################################################
##
52
## When updating this list of aidl files, consider if that aidl is
53 54 55 56 57 58 59 60
## part of the SDK API.  If it is, also add it to the list below that
## is preprocessed and distributed with the SDK.  This list should
## not contain any aidl files for parcelables, but the one below should
## if you intend for 3rd parties to be able to send those objects
## across process boundaries.
##
## READ ME: ########################################################
LOCAL_SRC_FILES += \
61
	core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
62
	core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \
63 64 65 66
	core/java/android/accounts/IAccountManager.aidl \
	core/java/android/accounts/IAccountManagerResponse.aidl \
	core/java/android/accounts/IAccountAuthenticator.aidl \
	core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
67
	core/java/android/app/IActivityController.aidl \
68 69
	core/java/android/app/IActivityPendingResult.aidl \
	core/java/android/app/IAlarmManager.aidl \
70
	core/java/android/app/IBackupAgent.aidl \
71 72
	core/java/android/app/IInstrumentationWatcher.aidl \
	core/java/android/app/INotificationManager.aidl \
73
	core/java/android/app/IProcessObserver.aidl \
74
	core/java/android/app/ISearchManager.aidl \
75
	core/java/android/app/ISearchManagerCallback.aidl \
76
	core/java/android/app/IServiceConnection.aidl \
77
	core/java/android/app/IStopUserCallback.aidl \
78
	core/java/android/app/IThumbnailReceiver.aidl \
79
	core/java/android/app/IThumbnailRetriever.aidl \
80
	core/java/android/app/ITransientNotification.aidl \
81
	core/java/android/app/IUiAutomationConnection.aidl \
82
	core/java/android/app/IUiModeManager.aidl \
83
	core/java/android/app/IUserSwitchObserver.aidl \
Dianne Hackborn's avatar
Dianne Hackborn committed
84 85
	core/java/android/app/IWallpaperManager.aidl \
	core/java/android/app/IWallpaperManagerCallback.aidl \
86
	core/java/android/app/admin/IDevicePolicyManager.aidl \
87
	core/java/android/app/backup/IBackupManager.aidl \
88
	core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
89 90
	core/java/android/app/backup/IRestoreObserver.aidl \
	core/java/android/app/backup/IRestoreSession.aidl \
Nick Pelly's avatar
Nick Pelly committed
91
	core/java/android/bluetooth/IBluetooth.aidl \
92
	core/java/android/bluetooth/IBluetoothA2dp.aidl \
93
	core/java/android/bluetooth/IBluetoothCallback.aidl \
94
	core/java/android/bluetooth/IBluetoothHeadset.aidl \
95
	core/java/android/bluetooth/IBluetoothHeadsetPhone.aidl \
96
	core/java/android/bluetooth/IBluetoothHealth.aidl \
97
	core/java/android/bluetooth/IBluetoothHealthCallback.aidl \
98
	core/java/android/bluetooth/IBluetoothInputDevice.aidl \
fredc's avatar
fredc committed
99 100 101
	core/java/android/bluetooth/IBluetoothPan.aidl \
	core/java/android/bluetooth/IBluetoothManager.aidl \
	core/java/android/bluetooth/IBluetoothManagerCallback.aidl \
Jiafa Liu's avatar
Jiafa Liu committed
102
	core/java/android/bluetooth/IBluetoothPbap.aidl \
103
	core/java/android/bluetooth/IBluetoothStateChangeCallback.aidl \
104 105 106
	core/java/android/bluetooth/IBluetoothGatt.aidl \
	core/java/android/bluetooth/IBluetoothGattCallback.aidl \
	core/java/android/bluetooth/IBluetoothGattServerCallback.aidl \
107
	core/java/android/content/IClipboard.aidl \
108
	core/java/android/content/IContentService.aidl \
109 110
	core/java/android/content/IIntentReceiver.aidl \
	core/java/android/content/IIntentSender.aidl \
111
	core/java/android/content/IOnPrimaryClipChangedListener.aidl \
112 113
	core/java/android/content/ISyncAdapter.aidl \
	core/java/android/content/ISyncContext.aidl \
114
	core/java/android/content/ISyncStatusObserver.aidl \
115 116 117 118
	core/java/android/content/pm/IPackageDataObserver.aidl \
	core/java/android/content/pm/IPackageDeleteObserver.aidl \
	core/java/android/content/pm/IPackageInstallObserver.aidl \
	core/java/android/content/pm/IPackageManager.aidl \
119
	core/java/android/content/pm/IPackageMoveObserver.aidl \
120 121
	core/java/android/content/pm/IPackageStatsObserver.aidl \
	core/java/android/database/IContentObserver.aidl \
Mike Lockwood's avatar
Mike Lockwood committed
122
	core/java/android/hardware/ISerialManager.aidl \
Jeff Brown's avatar
Jeff Brown committed
123
	core/java/android/hardware/display/IDisplayManager.aidl \
124
	core/java/android/hardware/display/IDisplayManagerCallback.aidl \
125
	core/java/android/hardware/input/IInputManager.aidl \
126
	core/java/android/hardware/input/IInputDevicesChangedListener.aidl \
Jaikumar Ganesh's avatar
Jaikumar Ganesh committed
127 128
	core/java/android/hardware/location/IGeofenceHardware.aidl \
	core/java/android/hardware/location/IGeofenceHardwareCallback.aidl \
129
	core/java/android/hardware/usb/IUsbManager.aidl \
130
	core/java/android/net/IConnectivityManager.aidl \
131
	core/java/android/net/INetworkManagementEventObserver.aidl \
132
	core/java/android/net/INetworkPolicyListener.aidl \
133
	core/java/android/net/INetworkPolicyManager.aidl \
134
	core/java/android/net/INetworkStatsService.aidl \
135
	core/java/android/net/INetworkStatsSession.aidl \
136
	core/java/android/net/nsd/INsdManager.aidl \
Jason parks's avatar
Jason parks committed
137
	core/java/android/nfc/INdefPushCallback.aidl \
Nick Pelly's avatar
Nick Pelly committed
138
	core/java/android/nfc/INfcAdapter.aidl \
139
	core/java/android/nfc/INfcAdapterExtras.aidl \
Nick Pelly's avatar
Nick Pelly committed
140
	core/java/android/nfc/INfcTag.aidl \
141
	core/java/android/os/ICancellationSignal.aidl \
142
	core/java/android/os/IHardwareService.aidl \
143
	core/java/android/os/IMessenger.aidl \
144
	core/java/android/os/INetworkManagementService.aidl \
145 146
	core/java/android/os/IPermissionController.aidl \
	core/java/android/os/IPowerManager.aidl \
147
	core/java/android/os/IRemoteCallback.aidl \
Glenn Kasten's avatar
Glenn Kasten committed
148
	core/java/android/os/ISchedulingPolicyService.aidl \
149
	core/java/android/os/IUpdateLock.aidl \
150
	core/java/android/os/IUserManager.aidl \
151
	core/java/android/os/IVibratorService.aidl \
152
	core/java/android/service/notification/INotificationListener.aidl \
153 154
	core/java/android/service/dreams/IDreamManager.aidl \
	core/java/android/service/dreams/IDreamService.aidl \
155 156 157 158 159
	core/java/android/service/wallpaper/IWallpaperConnection.aidl \
	core/java/android/service/wallpaper/IWallpaperEngine.aidl \
	core/java/android/service/wallpaper/IWallpaperService.aidl \
	core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\
	core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\
160 161
	core/java/android/view/accessibility/IAccessibilityManager.aidl \
	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
162
	core/java/android/view/IApplicationToken.aidl \
163
	core/java/android/view/IMagnificationCallbacks.aidl \
164 165
	core/java/android/view/IInputFilter.aidl \
	core/java/android/view/IInputFilterHost.aidl \
166 167 168
	core/java/android/view/IOnKeyguardExitResult.aidl \
	core/java/android/view/IRotationWatcher.aidl \
	core/java/android/view/IWindow.aidl \
169 170
	core/java/android/view/IWindowFocusObserver.aidl \
	core/java/android/view/IWindowId.aidl \
171 172
	core/java/android/view/IWindowManager.aidl \
	core/java/android/view/IWindowSession.aidl \
173 174
	core/java/android/speech/IRecognitionListener.aidl \
	core/java/android/speech/IRecognitionService.aidl \
175 176
	core/java/android/speech/tts/ITextToSpeechCallback.aidl \
	core/java/android/speech/tts/ITextToSpeechService.aidl \
177
	core/java/com/android/internal/app/IAppOpsCallback.aidl \
Dianne Hackborn's avatar
Dianne Hackborn committed
178
	core/java/com/android/internal/app/IAppOpsService.aidl \
179 180
	core/java/com/android/internal/app/IBatteryStats.aidl \
	core/java/com/android/internal/app/IUsageStats.aidl \
181
	core/java/com/android/internal/app/IMediaContainerService.aidl \
182 183
	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
184
	core/java/com/android/internal/backup/IBackupTransport.aidl \
185
	core/java/com/android/internal/backup/IObbBackupService.aidl \
186 187
	core/java/com/android/internal/policy/IFaceLockCallback.aidl \
	core/java/com/android/internal/policy/IFaceLockInterface.aidl \
188
	core/java/com/android/internal/os/IDropBoxManagerService.aidl \
189
	core/java/com/android/internal/os/IResultReceiver.aidl \
190 191
	core/java/com/android/internal/statusbar/IStatusBar.aidl \
	core/java/com/android/internal/statusbar/IStatusBarService.aidl \
192 193 194 195 196
	core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
	core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
	core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
	core/java/com/android/internal/textservice/ITextServicesManager.aidl \
	core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
197 198 199 200 201 202
	core/java/com/android/internal/view/IInputContext.aidl \
	core/java/com/android/internal/view/IInputContextCallback.aidl \
	core/java/com/android/internal/view/IInputMethod.aidl \
	core/java/com/android/internal/view/IInputMethodClient.aidl \
	core/java/com/android/internal/view/IInputMethodManager.aidl \
	core/java/com/android/internal/view/IInputMethodSession.aidl \
203
	core/java/com/android/internal/view/IInputSessionCallback.aidl \
Amith Yamasani's avatar
Amith Yamasani committed
204
	core/java/com/android/internal/widget/ILockSettings.aidl \
205
	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
206
	core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
Brian Carlstrom's avatar
Brian Carlstrom committed
207
	keystore/java/android/security/IKeyChainAliasCallback.aidl \
208
	keystore/java/android/security/IKeyChainService.aidl \
209 210
	location/java/android/location/ICountryDetector.aidl \
	location/java/android/location/ICountryListener.aidl \
211
	location/java/android/location/IGeocodeProvider.aidl \
Jaikumar Ganesh's avatar
Jaikumar Ganesh committed
212
	location/java/android/location/IGeofenceProvider.aidl \
213
	location/java/android/location/IGpsStatusListener.aidl \
214
	location/java/android/location/IGpsStatusProvider.aidl \
215 216
	location/java/android/location/ILocationListener.aidl \
	location/java/android/location/ILocationManager.aidl \
Jaikumar Ganesh's avatar
Jaikumar Ganesh committed
217
	location/java/android/location/IGpsGeofenceHardware.aidl \
Danke Xie's avatar
Danke Xie committed
218
	location/java/android/location/INetInitiatedListener.aidl \
Nick Pelly's avatar
Nick Pelly committed
219
	location/java/com/android/internal/location/ILocationProvider.aidl \
220
	media/java/android/media/IAudioService.aidl \
221
	media/java/android/media/IAudioFocusDispatcher.aidl \
222
	media/java/android/media/IAudioRoutesObserver.aidl \
223 224
	media/java/android/media/IMediaScannerListener.aidl \
	media/java/android/media/IMediaScannerService.aidl \
225 226
	media/java/android/media/IRemoteControlClient.aidl \
	media/java/android/media/IRemoteControlDisplay.aidl \
227
	media/java/android/media/IRemoteVolumeObserver.aidl \
228
	media/java/android/media/IRingtonePlayer.aidl \
229 230 231
	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
	telephony/java/com/android/internal/telephony/ITelephony.aidl \
232
	telephony/java/com/android/internal/telephony/ISms.aidl \
233
	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
234
	telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
235
	wifi/java/android/net/wifi/IWifiManager.aidl \
236
	wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl
237
#
238

239

240 241 242 243
# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)

LOCAL_INTERMEDIATE_SOURCES := \
244 245 246
			$(framework_res_source_path)/android/R.java \
			$(framework_res_source_path)/android/Manifest.java \
			$(framework_res_source_path)/com/android/internal/R.java
247 248

LOCAL_NO_STANDARD_LIBRARIES := true
249
LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271

LOCAL_MODULE := framework
LOCAL_MODULE_CLASS := JAVA_LIBRARIES

# List of classes and interfaces which should be loaded by the Zygote.
LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes

#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt

LOCAL_DX_FLAGS := --core-library

include $(BUILD_JAVA_LIBRARY)

# Make sure that R.java and Manifest.java are built before we build
# the source for this library.
framework_res_R_stamp := \
	$(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
$(full_classes_compiled_jar): $(framework_res_R_stamp)

# Make sure that framework-res is installed when framework is.
$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk

Ying Wang's avatar
Ying Wang committed
272
framework_built := $(call java-lib-deps,framework)
273 274 275 276 277

# AIDL files to be preprocessed and included in the SDK,
# relative to the root of the build tree.
# ============================================================
aidl_files := \
278 279 280 281
	frameworks/base/core/java/android/accounts/IAccountManager.aidl \
	frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
	frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
	frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
282 283
	frameworks/base/core/java/android/app/Notification.aidl \
	frameworks/base/core/java/android/app/PendingIntent.aidl \
284
	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
285
	frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \
286 287
	frameworks/base/core/java/android/content/ComponentName.aidl \
	frameworks/base/core/java/android/content/Intent.aidl \
288
	frameworks/base/core/java/android/content/IntentSender.aidl \
Fred Quintana's avatar
Fred Quintana committed
289
	frameworks/base/core/java/android/content/PeriodicSync.aidl \
290 291
	frameworks/base/core/java/android/content/SyncStats.aidl \
	frameworks/base/core/java/android/content/res/Configuration.aidl \
292
	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
293
	frameworks/base/core/java/android/net/Uri.aidl \
Nick Pelly's avatar
Nick Pelly committed
294 295 296
	frameworks/base/core/java/android/nfc/NdefMessage.aidl \
	frameworks/base/core/java/android/nfc/NdefRecord.aidl \
	frameworks/base/core/java/android/nfc/Tag.aidl \
297
	frameworks/base/core/java/android/os/Bundle.aidl \
298
	frameworks/base/core/java/android/os/DropBoxManager.aidl \
299
	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
300
	frameworks/base/core/java/android/os/ParcelUuid.aidl \
301 302 303 304 305
	frameworks/base/core/java/android/view/KeyEvent.aidl \
	frameworks/base/core/java/android/view/MotionEvent.aidl \
	frameworks/base/core/java/android/view/Surface.aidl \
	frameworks/base/core/java/android/view/WindowManager.aidl \
	frameworks/base/core/java/android/widget/RemoteViews.aidl \
306 307 308 309 310
	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
	frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \
	frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
311 312 313 314 315 316 317 318 319
	frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
	frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
	frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
	frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
	frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
	frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
	frameworks/base/graphics/java/android/graphics/Rect.aidl \
	frameworks/base/graphics/java/android/graphics/Region.aidl \
	frameworks/base/location/java/android/location/Criteria.aidl \
Nick Pelly's avatar
Nick Pelly committed
320
	frameworks/base/location/java/android/location/Geofence.aidl \
321
	frameworks/base/location/java/android/location/Location.aidl \
Nick Pelly's avatar
Nick Pelly committed
322 323 324
	frameworks/base/location/java/android/location/LocationRequest.aidl \
	frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \
	frameworks/base/location/java/com/android/internal/location/ProviderRequest.aidl \
325 326
	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
327
	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346

gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
$(gen): PRIVATE_SRC_FILES := $(aidl_files)
ALL_SDK_FILES += $(gen)
$(gen): $(aidl_files) | $(AIDL)
		@echo Aidl Preprocess: $@
		$(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)

# the documentation
# ============================================================

# TODO: deal with com/google/android/googleapps
packages_to_document := \
	android \
	javax/microedition/khronos

# Search through the base framework dirs for these packages.
# The result will be relative to frameworks/base.
fwbase_dirs_to_document := \
Brett Chabot's avatar
Brett Chabot committed
347
	test-runner/src \
348 349 350 351 352 353 354 355
	$(patsubst $(LOCAL_PATH)/%,%, \
	  $(wildcard \
	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
	      $(addprefix $(dir)/, $(packages_to_document)) \
	     ) \
	   ) \
	 )

356
# include definition of libcore_to_document
357 358 359 360
include libcore/Docs.mk

# include definition of junit_to_document
include external/junit/Common.mk
361 362

non_base_dirs := \
363 364 365
	../../external/apache-http/src/org/apache/http \
	../opt/telephony/src/java/android/telephony \
	../opt/telephony/src/java/android/telephony/gsm \
366 367
	../opt/net/voip/src/java/android/net/rtp \
	../opt/net/voip/src/java/android/net/sip
368 369

# These are relative to frameworks/base
370 371
dirs_to_check_apis := \
  $(fwbase_dirs_to_document) \
372
	$(non_base_dirs)
373

374 375 376 377 378 379 380
# These are relative to frameworks/base
# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
dirs_to_document := \
	$(dirs_to_check_apis) \
  $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS))

# These are relative to frameworks/base
381 382 383 384
html_dirs := \
	$(FRAMEWORKS_BASE_SUBDIRS) \
	$(non_base_dirs)

385 386 387
# Common sources for doc check and api check
common_src_files := \
	$(call find-other-html-files, $(html_dirs)) \
388 389
	$(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore)) \
	$(addprefix ../../external/junit/, $(call junit_to_document, $(LOCAL_PATH)/../../external/junit))
390

391 392 393
# These are relative to frameworks/base
framework_docs_LOCAL_SRC_FILES := \
	$(call find-other-java-files, $(dirs_to_document)) \
394 395 396 397 398 399
	$(common_src_files)

# These are relative to frameworks/base
framework_docs_LOCAL_API_CHECK_SRC_FILES := \
	$(call find-other-java-files, $(dirs_to_check_apis)) \
	$(common_src_files)
400

401 402 403 404
# This is used by ide.mk as the list of source files that are
# always included.
INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))

405 406 407 408
framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS)

framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
409 410 411
			$(framework_res_source_path)/android/R.java \
			$(framework_res_source_path)/android/Manifest.java \
			$(framework_res_source_path)/com/android/internal/R.java
412 413

framework_docs_LOCAL_JAVA_LIBRARIES := \
414
			bouncycastle \
415 416
			core \
			ext \
417
			framework \
418 419
			mms-common \
			telephony-common \
420
			voip-common \
421 422

framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Joe Onorato's avatar
Joe Onorato committed
423
framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
424 425
# The since flag (-since N.xml API_LEVEL) is used to add API Level information
# to the reference documentation. Must be in order of oldest to newest.
426
framework_docs_LOCAL_DROIDDOC_OPTIONS := \
427
    -knowntags ./frameworks/base/docs/knowntags.txt \
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
    -since $(SRC_API_DIR)/1.xml 1 \
    -since $(SRC_API_DIR)/2.xml 2 \
    -since $(SRC_API_DIR)/3.xml 3 \
    -since $(SRC_API_DIR)/4.xml 4 \
    -since $(SRC_API_DIR)/5.xml 5 \
    -since $(SRC_API_DIR)/6.xml 6 \
    -since $(SRC_API_DIR)/7.xml 7 \
    -since $(SRC_API_DIR)/8.xml 8 \
    -since $(SRC_API_DIR)/9.xml 9 \
    -since $(SRC_API_DIR)/10.xml 10 \
    -since $(SRC_API_DIR)/11.xml 11 \
    -since $(SRC_API_DIR)/12.xml 12 \
    -since $(SRC_API_DIR)/13.xml 13 \
    -since $(SRC_API_DIR)/14.txt 14 \
    -since $(SRC_API_DIR)/15.txt 15 \
    -since $(SRC_API_DIR)/16.txt 16 \
    -since $(SRC_API_DIR)/17.txt 17 \
445
		-werror -hide 113 \
446 447
		-overview $(LOCAL_PATH)/core/java/overview.html

448
framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
449 450 451

framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
    frameworks/base/docs/knowntags.txt
452 453 454

sample_dir := development/samples

455 456
# the list here should match the list of samples included in the sdk samples package
# (see development/build/sdk.atree)
457 458
# remove htmlified samples for now -- samples are still available through the SDK
# web_docs_sample_code_flags := \
459
		-hdf android.hasSamples 1 \
460 461
		-samplecode $(sample_dir)/AccelerometerPlay \
		            resources/samples/AccelerometerPlay "Accelerometer Play" \
462 463
		-samplecode $(sample_dir)/ActionBarCompat \
		            resources/samples/ActionBarCompat "Action Bar Compatibility" \
Scott Main's avatar
Scott Main committed
464
                -samplecode $(sample_dir)/AndroidBeamDemo \
Scott Main's avatar
Scott Main committed
465
		            resources/samples/AndroidBeamDemo "Android Beam Demo" \
466
		-samplecode $(sample_dir)/ApiDemos \
Robert Ly's avatar
Robert Ly committed
467
		            resources/samples/ApiDemos "API Demos" \
468 469 470 471
		-samplecode $(sample_dir)/Support4Demos \
		            resources/samples/Support4Demos "API 4+ Support Demos" \
		-samplecode $(sample_dir)/Support13Demos \
		            resources/samples/Support13Demos "API 13+ Support Demos" \
472 473
		-samplecode $(sample_dir)/BackupRestore \
		            resources/samples/BackupRestore "Backup and Restore" \
474 475
		-samplecode $(sample_dir)/BluetoothChat \
		            resources/samples/BluetoothChat "Bluetooth Chat" \
476 477
		-samplecode $(sample_dir)/BluetoothHDP \
		            resources/samples/BluetoothHDP "Bluetooth HDP Demo" \
478 479
		-samplecode $(sample_dir)/BusinessCard \
		            resources/samples/BusinessCard "Business Card" \
480 481
		-samplecode $(sample_dir)/ContactManager \
		            resources/samples/ContactManager "Contact Manager" \
482 483
		-samplecode $(sample_dir)/CubeLiveWallpaper \
		            resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
484
		-samplecode $(sample_dir)/Home \
485
		            resources/samples/Home "Home" \
486 487
		-samplecode $(sample_dir)/HoneycombGallery \
		            resources/samples/HoneycombGallery "Honeycomb Gallery" \
488
		-samplecode $(sample_dir)/JetBoy \
489
		            resources/samples/JetBoy "JetBoy" \
490 491
		-samplecode $(sample_dir)/KeyChainDemo \
		            resources/samples/KeyChainDemo "KeyChain Demo" \
492
		-samplecode $(sample_dir)/LunarLander \
493
		            resources/samples/LunarLander "Lunar Lander" \
494 495
		-samplecode $(sample_dir)/training/ads-and-ux \
		            resources/samples/training/ads-and-ux "Mobile Advertisement Integration" \
496 497
		-samplecode $(sample_dir)/MultiResolution \
		            resources/samples/MultiResolution "Multiple Resolutions" \
498 499
		-samplecode $(sample_dir)/training/multiscreen/newsreader \
		            resources/samples/newsreader "News Reader" \
500
		-samplecode $(sample_dir)/NotePad \
501
		            resources/samples/NotePad "Note Pad" \
502
		-samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \
503
		            resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \
504
		-samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \
505
		            resources/samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \
Dianne Hackborn's avatar
Dianne Hackborn committed
506 507
		-samplecode $(sample_dir)/SampleSyncAdapter \
		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
508 509
		-samplecode $(sample_dir)/RandomMusicPlayer \
		            resources/samples/RandomMusicPlayer "Random Music Player" \
510 511
		-samplecode $(sample_dir)/RenderScript \
		            resources/samples/RenderScript "RenderScript" \
512
		-samplecode $(sample_dir)/SearchableDictionary \
513
		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
Alexander Lucas's avatar
Alexander Lucas committed
514 515
		-samplecode $(sample_dir)/SipDemo \
		            resources/samples/SipDemo "SIP Demo" \
516
		-samplecode $(sample_dir)/Snake \
517
		            resources/samples/Snake "Snake" \
518
		-samplecode $(sample_dir)/SoftKeyboard \
519
		            resources/samples/SoftKeyboard "Soft Keyboard" \
520 521 522 523
		-samplecode $(sample_dir)/Spinner  \
		            resources/samples/Spinner "Spinner" \
		-samplecode $(sample_dir)/SpinnerTest \
		            resources/samples/SpinnerTest "SpinnerTest" \
Adam Cohen's avatar
Adam Cohen committed
524
		-samplecode $(sample_dir)/StackWidget \
525
		            resources/samples/StackWidget "StackView Widget" \
526 527 528 529
		-samplecode $(sample_dir)/TicTacToeLib  \
		            resources/samples/TicTacToeLib "TicTacToeLib" \
		-samplecode $(sample_dir)/TicTacToeMain \
		            resources/samples/TicTacToeMain "TicTacToeMain" \
530 531
		-samplecode $(sample_dir)/ToyVpn \
		            resources/samples/ToyVpn "Toy VPN Client" \
532 533
		-samplecode $(sample_dir)/USB \
		            resources/samples/USB "USB" \
534
		-samplecode $(sample_dir)/WeatherListWidget \
535
		            resources/samples/WeatherListWidget "Weather List Widget" \
536 537
		-samplecode $(sample_dir)/WiFiDirectDemo \
                            resources/samples/WiFiDirectDemo "Wi-Fi Direct Demo" \
538 539 540
		-samplecode $(sample_dir)/Wiktionary \
		            resources/samples/Wiktionary "Wiktionary" \
		-samplecode $(sample_dir)/WiktionarySimple \
541 542
		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
		-samplecode $(sample_dir)/VoiceRecognitionService \
Gilles Debunne's avatar
Gilles Debunne committed
543
		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
544 545
		-samplecode $(sample_dir)/VoicemailProviderDemo \
		            resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \
Gilles Debunne's avatar
Gilles Debunne committed
546
		-samplecode $(sample_dir)/XmlAdapters \
547 548
		            resources/samples/XmlAdapters "XML Adapters" \
		-samplecode $(sample_dir)/TtsEngine \
549 550 551 552
		            resources/samples/TtsEngine "Text To Speech Engine" \
		-samplecode $(sample_dir)/training/device-management-policy \
		            resources/samples/training/device-management-policy "Device Management Policy"

553

554 555
## SDK version identifiers used in the published docs
  # major[.minor] version for current SDK. (full releases only)
556
framework_docs_SDK_VERSION:=4.2
557
  # release version (ie "Release x")  (full releases only)
558
framework_docs_SDK_REL_ID:=1
559 560 561

framework_docs_LOCAL_DROIDDOC_OPTIONS += \
		-hdf sdk.version $(framework_docs_SDK_VERSION) \
562
		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
563
		-hdf sdk.preview 0 \
564

565 566 567
# ====  the api stubs and current.xml ===========================
include $(CLEAR_VARS)

568
LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
569 570 571 572 573 574
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
575
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
576 577 578 579 580 581

LOCAL_MODULE := api-stubs

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
582
		-api $(INTERNAL_PLATFORM_API_FILE) \
583 584 585 586
		-nodocs

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk

587 588
LOCAL_UNINSTALLABLE_MODULE := true

589 590
include $(BUILD_DROIDDOC)

591 592
# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
$(full_target): $(framework_built) $(gen)
593 594 595
$(INTERNAL_PLATFORM_API_FILE): $(full_target)
$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))

596 597 598 599 600 601 602 603 604 605
# ====  check javadoc comments but don't generate docs ========
include $(CLEAR_VARS)

LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
606
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
607 608 609 610 611 612 613 614 615

LOCAL_MODULE := doc-comment-check

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		-parsecomments

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk

616 617
LOCAL_UNINSTALLABLE_MODULE := true

618 619 620 621 622
include $(BUILD_DROIDDOC)

# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
$(full_target): $(framework_built) $(gen)

623 624 625
# Run this for checkbuild
.PHONY: checkbuild
checkbuild: doc-comment-check-docs
626

Robert Ly's avatar
Robert Ly committed
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
# ====  static html in the pdk ==================================
include $(CLEAR_VARS)

LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=../../vendor/pdk/data/google/docs
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)

LOCAL_MODULE := offline-pdk

LOCAL_DROIDDOC_OPTIONS:=\
		-hdf android.whichdoc offline \
		-hdf android.whichmodule $(LOCAL_MODULE)

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-pdk

include $(BUILD_DROIDDOC)


649 650 651 652 653 654 655 656 657 658
# ====  static html in the sdk ==================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
659
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
660 661 662 663 664

LOCAL_MODULE := offline-sdk

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
665
                $(web_docs_sample_code_flags) \
666
                -offlinemode \
667 668 669 670
		-title "Android SDK" \
		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
		-sdkvalues $(OUT_DOCS) \
671
		-hdf android.whichdoc offline
672

673 674 675 676 677 678 679

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk

include $(BUILD_DROIDDOC)

static_doc_index_redirect := $(out_dir)/index.html
$(static_doc_index_redirect): \
680
	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
681 682 683 684 685 686
	$(hide) mkdir -p $(dir $@)
	$(hide) $(ACP) $< $@

$(full_target): $(static_doc_index_redirect)
$(full_target): $(framework_built)

687
# ==== docs for the web (on the androiddevdocs app engine server) =======================
688 689 690 691 692 693 694 695 696 697
include $(CLEAR_VARS)

LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
698
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
699 700 701 702

LOCAL_MODULE := online-sdk

LOCAL_DROIDDOC_OPTIONS:= \
703 704 705
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		$(web_docs_sample_code_flags) \
		-toroot / \
706 707
		-hdf android.whichdoc online \
		-hdf template.showLanguageMenu true
708 709 710 711 712

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk

include $(BUILD_DROIDDOC)

713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
# ==== docs for the web (on the devsite app engine server) =======================
include $(CLEAR_VARS)
LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
# specify a second html input dir and an output path relative to OUT_DIR)
LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl /

LOCAL_MODULE := ds

LOCAL_DROIDDOC_OPTIONS:= \
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		$(web_docs_sample_code_flags) \
		-devsite \
		-toroot / \
734 735
		-hdf android.whichdoc online \
		-hdf devsite true
736

737
LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
738 739 740

include $(BUILD_DROIDDOC)

741 742 743 744 745 746 747 748 749
# ==== docs that have all of the stuff that's @hidden =======================
include $(CLEAR_VARS)

LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
750
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
751
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
752 753 754 755

LOCAL_MODULE := hidden
LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
756 757
		-title "Android SDK - Including hidden APIs."
#		-hidden
758 759 760 761 762 763 764 765

LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk

include $(BUILD_DROIDDOC)

# Build ext.jar
# ============================================================

766 767 768 769
# NOTICE notes for non-obvious sections
# apache-http - covered by the Apache Commons section.


770
ext_dirs := \
771
	../../external/nist-sip/java \
772
	../../external/apache-http/src \
773 774
	../../external/tagsoup/src \
	../../external/libphonenumber/java/src
775 776 777

ext_src_files := $(call all-java-files-under,$(ext_dirs))

778 779 780
ext_res_dirs := \
	../../external/libphonenumber/java/src

781 782 783 784 785 786 787
# ====  the library  =========================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(ext_src_files)

LOCAL_NO_STANDARD_LIBRARIES := true
LOCAL_JAVA_LIBRARIES := core
788
LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
789
LOCAL_MODULE_TAGS := optional
790 791
LOCAL_MODULE := ext

792 793
LOCAL_DX_FLAGS := --core-library

794 795 796 797 798 799 800 801 802 803 804
include $(BUILD_JAVA_LIBRARY)


# Include subdirectory makefiles
# ============================================================

# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
# team really wants is to build the stuff defined by this makefile.
ifeq (,$(ONE_SHOT_MAKEFILE))
include $(call first-makefiles-under,$(LOCAL_PATH))
endif