Android.mk 28 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 39 40
LOCAL_SRC_FILES += \
       core/java/android/content/EventLogTags.logtags \
       core/java/android/webkit/EventLogTags.logtags \
       telephony/java/com/android/internal/telephony/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/IEventListener.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 70
	core/java/android/app/IActivityPendingResult.aidl \
	core/java/android/app/IActivityWatcher.aidl \
	core/java/android/app/IAlarmManager.aidl \
71
	core/java/android/app/IBackupAgent.aidl \
72 73
	core/java/android/app/IInstrumentationWatcher.aidl \
	core/java/android/app/INotificationManager.aidl \
74
	core/java/android/app/IProcessObserver.aidl \
75
	core/java/android/app/ISearchManager.aidl \
76
	core/java/android/app/ISearchManagerCallback.aidl \
77 78
	core/java/android/app/IServiceConnection.aidl \
	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/IUiModeManager.aidl \
Dianne Hackborn's avatar
Dianne Hackborn committed
82 83
	core/java/android/app/IWallpaperManager.aidl \
	core/java/android/app/IWallpaperManagerCallback.aidl \
84
	core/java/android/app/admin/IDevicePolicyManager.aidl \
85
	core/java/android/app/backup/IBackupManager.aidl \
86
	core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
87 88
	core/java/android/app/backup/IRestoreObserver.aidl \
	core/java/android/app/backup/IRestoreSession.aidl \
Nick Pelly's avatar
Nick Pelly committed
89
	core/java/android/bluetooth/IBluetooth.aidl \
90
	core/java/android/bluetooth/IBluetoothA2dp.aidl \
91
	core/java/android/bluetooth/IBluetoothCallback.aidl \
92
	core/java/android/bluetooth/IBluetoothHeadset.aidl \
Jiafa Liu's avatar
Jiafa Liu committed
93
	core/java/android/bluetooth/IBluetoothPbap.aidl \
94
	core/java/android/content/IClipboard.aidl \
95
	core/java/android/content/IContentService.aidl \
96 97
	core/java/android/content/IIntentReceiver.aidl \
	core/java/android/content/IIntentSender.aidl \
98
	core/java/android/content/IOnPrimaryClipChangedListener.aidl \
99 100
	core/java/android/content/ISyncAdapter.aidl \
	core/java/android/content/ISyncContext.aidl \
101
	core/java/android/content/ISyncStatusObserver.aidl \
102 103 104 105
	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 \
106
	core/java/android/content/pm/IPackageMoveObserver.aidl \
107 108
	core/java/android/content/pm/IPackageStatsObserver.aidl \
	core/java/android/database/IContentObserver.aidl \
109
	core/java/android/hardware/usb/IUsbManager.aidl \
110
	core/java/android/net/IConnectivityManager.aidl \
111
	core/java/android/net/INetworkManagementEventObserver.aidl \
112
	core/java/android/net/IThrottleManager.aidl \
113
	core/java/android/net/INetworkPolicyListener.aidl \
114
	core/java/android/net/INetworkPolicyManager.aidl \
115
	core/java/android/net/INetworkStatsService.aidl \
Nick Pelly's avatar
Nick Pelly committed
116 117 118
	core/java/android/nfc/ILlcpConnectionlessSocket.aidl \
	core/java/android/nfc/ILlcpServiceSocket.aidl \
	core/java/android/nfc/ILlcpSocket.aidl \
Jason parks's avatar
Jason parks committed
119
	core/java/android/nfc/INdefPushCallback.aidl \
Nick Pelly's avatar
Nick Pelly committed
120
	core/java/android/nfc/INfcAdapter.aidl \
121
	core/java/android/nfc/INfcAdapterExtras.aidl \
Nick Pelly's avatar
Nick Pelly committed
122 123 124
	core/java/android/nfc/INfcTag.aidl \
	core/java/android/nfc/IP2pInitiator.aidl \
	core/java/android/nfc/IP2pTarget.aidl \
125
	core/java/android/os/IHardwareService.aidl \
126
	core/java/android/os/IMessenger.aidl \
127
	core/java/android/os/INetworkManagementService.aidl \
128 129
	core/java/android/os/IPermissionController.aidl \
	core/java/android/os/IPowerManager.aidl \
130
	core/java/android/os/IRemoteCallback.aidl \
131
	core/java/android/os/IVibratorService.aidl \
132 133 134 135 136
	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\
137 138
	core/java/android/view/accessibility/IAccessibilityManager.aidl \
	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
139 140 141 142 143 144
	core/java/android/view/IApplicationToken.aidl \
	core/java/android/view/IOnKeyguardExitResult.aidl \
	core/java/android/view/IRotationWatcher.aidl \
	core/java/android/view/IWindow.aidl \
	core/java/android/view/IWindowManager.aidl \
	core/java/android/view/IWindowSession.aidl \
145 146
	core/java/android/speech/IRecognitionListener.aidl \
	core/java/android/speech/IRecognitionService.aidl \
147 148
	core/java/android/speech/tts/ITextToSpeechCallback.aidl \
	core/java/android/speech/tts/ITextToSpeechService.aidl \
149 150
	core/java/com/android/internal/app/IBatteryStats.aidl \
	core/java/com/android/internal/app/IUsageStats.aidl \
151
	core/java/com/android/internal/app/IMediaContainerService.aidl \
152 153
	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
154
	core/java/com/android/internal/backup/IBackupTransport.aidl \
155
	core/java/com/android/internal/os/IDropBoxManagerService.aidl \
156
	core/java/com/android/internal/os/IResultReceiver.aidl \
157 158
	core/java/com/android/internal/statusbar/IStatusBar.aidl \
	core/java/com/android/internal/statusbar/IStatusBarService.aidl \
159 160 161 162 163 164 165
	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/IInputMethodCallback.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 \
166
	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
167
	core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
Brian Carlstrom's avatar
Brian Carlstrom committed
168
	keystore/java/android/security/IKeyChainAliasCallback.aidl \
169
	keystore/java/android/security/IKeyChainService.aidl \
170 171
	location/java/android/location/ICountryDetector.aidl \
	location/java/android/location/ICountryListener.aidl \
172
	location/java/android/location/IGeocodeProvider.aidl \
173
	location/java/android/location/IGpsStatusListener.aidl \
174
	location/java/android/location/IGpsStatusProvider.aidl \
175 176
	location/java/android/location/ILocationListener.aidl \
	location/java/android/location/ILocationManager.aidl \
177
	location/java/android/location/ILocationProvider.aidl \
Danke Xie's avatar
Danke Xie committed
178
	location/java/android/location/INetInitiatedListener.aidl \
179
	media/java/android/media/IAudioService.aidl \
180
	media/java/android/media/IAudioFocusDispatcher.aidl \
181 182 183 184 185 186
	media/java/android/media/IMediaScannerListener.aidl \
	media/java/android/media/IMediaScannerService.aidl \
	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
	telephony/java/com/android/internal/telephony/ITelephony.aidl \
	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
187 188
	telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \
	telephony/java/com/android/internal/telephony/ISms.aidl \
189
	telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
190
	wifi/java/android/net/wifi/IWifiManager.aidl \
Raphael's avatar
Raphael committed
191
	telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
192
	vpn/java/android/net/vpn/IVpnService.aidl \
193 194 195 196
	voip/java/android/net/sip/ISipSession.aidl \
	voip/java/android/net/sip/ISipSessionListener.aidl \
	voip/java/android/net/sip/ISipService.aidl
#
197

198

199 200 201 202
# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)

LOCAL_INTERMEDIATE_SOURCES := \
203 204 205
			$(framework_res_source_path)/android/R.java \
			$(framework_res_source_path)/android/Manifest.java \
			$(framework_res_source_path)/com/android/internal/R.java
206 207

LOCAL_NO_STANDARD_LIBRARIES := true
208
LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
209 210 211 212

LOCAL_MODULE := framework
LOCAL_MODULE_CLASS := JAVA_LIBRARIES

213 214 215
LOCAL_NO_EMMA_INSTRUMENT := true
LOCAL_NO_EMMA_COMPILE := true

216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
# 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

framework_built := $(LOCAL_BUILT_MODULE)

# AIDL files to be preprocessed and included in the SDK,
# relative to the root of the build tree.
# ============================================================
aidl_files := \
240 241 242 243
	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 \
244 245
	frameworks/base/core/java/android/app/Notification.aidl \
	frameworks/base/core/java/android/app/PendingIntent.aidl \
246
	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
247 248
	frameworks/base/core/java/android/content/ComponentName.aidl \
	frameworks/base/core/java/android/content/Intent.aidl \
249
	frameworks/base/core/java/android/content/IntentSender.aidl \
Fred Quintana's avatar
Fred Quintana committed
250
	frameworks/base/core/java/android/content/PeriodicSync.aidl \
251 252
	frameworks/base/core/java/android/content/SyncStats.aidl \
	frameworks/base/core/java/android/content/res/Configuration.aidl \
253
	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
254
	frameworks/base/core/java/android/net/Uri.aidl \
Nick Pelly's avatar
Nick Pelly committed
255 256 257
	frameworks/base/core/java/android/nfc/NdefMessage.aidl \
	frameworks/base/core/java/android/nfc/NdefRecord.aidl \
	frameworks/base/core/java/android/nfc/Tag.aidl \
258
	frameworks/base/core/java/android/os/Bundle.aidl \
259
	frameworks/base/core/java/android/os/DropBoxManager.aidl \
260
	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
261
	frameworks/base/core/java/android/os/ParcelUuid.aidl \
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
	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 \
	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/IInputMethodCallback.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 \
	frameworks/base/location/java/android/location/Location.aidl \
	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
280
	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
281
	frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

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
301
	test-runner/src \
302 303 304 305 306 307 308 309
	$(patsubst $(LOCAL_PATH)/%,%, \
	  $(wildcard \
	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
	      $(addprefix $(dir)/, $(packages_to_document)) \
	     ) \
	   ) \
	 )

310 311
# include definition of libcore_to_document
include $(LOCAL_PATH)/../../libcore/Docs.mk
312 313

non_base_dirs := \
Dirk Balfanz's avatar
Dirk Balfanz committed
314
	../../external/apache-http/src/org/apache/http
315 316 317 318

# These are relative to frameworks/base
dirs_to_document := \
	$(fwbase_dirs_to_document) \
319
	$(non_base_dirs)
320 321 322 323 324 325 326 327

html_dirs := \
	$(FRAMEWORKS_BASE_SUBDIRS) \
	$(non_base_dirs)

# These are relative to frameworks/base
framework_docs_LOCAL_SRC_FILES := \
	$(call find-other-java-files, $(dirs_to_document)) \
328 329
	$(call find-other-html-files, $(html_dirs)) \
	$(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore))
330

331 332 333 334
# 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))

335 336 337 338
framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS)

framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
339 340 341
			$(framework_res_source_path)/android/R.java \
			$(framework_res_source_path)/android/Manifest.java \
			$(framework_res_source_path)/com/android/internal/R.java
342 343

framework_docs_LOCAL_JAVA_LIBRARIES := \
344
			bouncycastle \
345 346
			core \
			ext \
347
			framework \
348 349

framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Joe Onorato's avatar
Joe Onorato committed
350
framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
351 352
# 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.
353
framework_docs_LOCAL_DROIDDOC_OPTIONS := \
354
    -knowntags ./frameworks/base/docs/knowntags.txt \
355 356 357
    -since ./frameworks/base/api/1.xml 1 \
    -since ./frameworks/base/api/2.xml 2 \
    -since ./frameworks/base/api/3.xml 3 \
358
    -since ./frameworks/base/api/4.xml 4 \
359
    -since ./frameworks/base/api/5.xml 5 \
360
    -since ./frameworks/base/api/6.xml 6 \
361
    -since ./frameworks/base/api/7.xml 7 \
362
    -since ./frameworks/base/api/8.xml 8 \
363
    -since ./frameworks/base/api/9.xml 9 \
364
    -since ./frameworks/base/api/10.xml 10 \
365
    -since ./frameworks/base/api/11.xml 11 \
366
    -since ./frameworks/base/api/12.xml 12 \
367
		-werror -hide 113 \
368 369
		-overview $(LOCAL_PATH)/core/java/overview.html

370
framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
371 372 373

framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
    frameworks/base/docs/knowntags.txt
374 375 376

sample_dir := development/samples

377 378
# the list here should match the list of samples included in the sdk samples package
# (see development/build/sdk.atree)
379 380
web_docs_sample_code_flags := \
		-hdf android.hasSamples 1 \
381 382
		-samplecode $(sample_dir)/AccessibilityService \
		            resources/samples/AccessibilityService "Accessibility Service" \
383 384
		-samplecode $(sample_dir)/AccelerometerPlay \
		            resources/samples/AccelerometerPlay "Accelerometer Play" \
385
		-samplecode $(sample_dir)/ApiDemos \
Robert Ly's avatar
Robert Ly committed
386
		            resources/samples/ApiDemos "API Demos" \
387 388 389 390
		-samplecode $(sample_dir)/Support4Demos \
		            resources/samples/Support4Demos "API 4+ Support Demos" \
		-samplecode $(sample_dir)/Support13Demos \
		            resources/samples/Support13Demos "API 13+ Support Demos" \
391 392
		-samplecode $(sample_dir)/BackupRestore \
		            resources/samples/BackupRestore "Backup and Restore" \
393 394
		-samplecode $(sample_dir)/BluetoothChat \
		            resources/samples/BluetoothChat "Bluetooth Chat" \
395 396
		-samplecode $(sample_dir)/BusinessCard \
		            resources/samples/BusinessCard "Business Card" \
397 398
		-samplecode $(sample_dir)/ContactManager \
		            resources/samples/ContactManager "Contact Manager" \
Robert Ly's avatar
Robert Ly committed
399 400
    -samplecode $(sample_dir)/CubeLiveWallpaper \
                resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
401
		-samplecode $(sample_dir)/Home \
402
		            resources/samples/Home "Home" \
403 404
                -samplecode $(sample_dir)/HoneycombGallery \
                            resources/samples/HoneycombGallery "Honeycomb Gallery" \
405
		-samplecode $(sample_dir)/JetBoy \
406
		            resources/samples/JetBoy "JetBoy" \
407
		-samplecode $(sample_dir)/LunarLander \
408 409 410
		            resources/samples/LunarLander "Lunar Lander" \
		-samplecode $(sample_dir)/MultiResolution \
		            resources/samples/MultiResolution "Multiple Resolutions" \
Robert Ly's avatar
Robert Ly committed
411 412
		-samplecode $(sample_dir)/NFCDemo \
		            resources/samples/NFCDemo "NFC Demo" \
413
		-samplecode $(sample_dir)/NotePad \
414
		            resources/samples/NotePad "Note Pad" \
Dianne Hackborn's avatar
Dianne Hackborn committed
415 416
		-samplecode $(sample_dir)/SampleSyncAdapter \
		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
417 418
		-samplecode $(sample_dir)/RenderScript \
		            resources/samples/RenderScript "RenderScript" \
419
		-samplecode $(sample_dir)/SearchableDictionary \
420
		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
Alexander Lucas's avatar
Alexander Lucas committed
421 422
		-samplecode $(sample_dir)/SipDemo \
		            resources/samples/SipDemo "SIP Demo" \
423
		-samplecode $(sample_dir)/Snake \
424
		            resources/samples/Snake "Snake" \
425
		-samplecode $(sample_dir)/SoftKeyboard \
426
		            resources/samples/SoftKeyboard "Soft Keyboard" \
427 428 429 430
		-samplecode $(sample_dir)/Spinner  \
		            resources/samples/Spinner "Spinner" \
		-samplecode $(sample_dir)/SpinnerTest \
		            resources/samples/SpinnerTest "SpinnerTest" \
Adam Cohen's avatar
Adam Cohen committed
431
		-samplecode $(sample_dir)/StackWidget \
432
		            resources/samples/StackWidget "StackView Widget" \
433 434 435 436
		-samplecode $(sample_dir)/TicTacToeLib  \
		            resources/samples/TicTacToeLib "TicTacToeLib" \
		-samplecode $(sample_dir)/TicTacToeMain \
		            resources/samples/TicTacToeMain "TicTacToeMain" \
437 438
		-samplecode $(sample_dir)/USB \
		            resources/samples/USB "USB" \
439
		-samplecode $(sample_dir)/WeatherListWidget \
440
		            resources/samples/WeatherListWidget "Weather List Widget" \
441 442 443
		-samplecode $(sample_dir)/Wiktionary \
		            resources/samples/Wiktionary "Wiktionary" \
		-samplecode $(sample_dir)/WiktionarySimple \
444 445
		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
		-samplecode $(sample_dir)/VoiceRecognitionService \
Gilles Debunne's avatar
Gilles Debunne committed
446
		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
447 448
		-samplecode $(sample_dir)/VoicemailProviderDemo \
		            resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \
Gilles Debunne's avatar
Gilles Debunne committed
449 450
		-samplecode $(sample_dir)/XmlAdapters \
		            resources/samples/XmlAdapters "XML Adapters"
451

452 453
## SDK version identifiers used in the published docs
  # major[.minor] version for current SDK. (full releases only)
454
framework_docs_SDK_VERSION:=3.1
455
  # release version (ie "Release x")  (full releases only)
456
framework_docs_SDK_REL_ID:=1
457 458 459

framework_docs_LOCAL_DROIDDOC_OPTIONS += \
		-hdf sdk.version $(framework_docs_SDK_VERSION) \
460
		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
461
		-hdf sdk.preview 0 \
462

463 464 465 466 467 468 469 470 471 472
# ====  the api stubs and current.xml ===========================
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)
473
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
474 475 476 477 478 479

LOCAL_MODULE := api-stubs

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
480
		-api $(INTERNAL_PLATFORM_API_FILE) \
481 482 483 484
		-nodocs

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

485 486
LOCAL_UNINSTALLABLE_MODULE := true

487 488
include $(BUILD_DROIDDOC)

489 490
# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
$(full_target): $(framework_built) $(gen)
491 492 493
$(INTERNAL_PLATFORM_API_FILE): $(full_target)
$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))

494 495 496 497 498 499 500 501 502 503
# ====  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)
504
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
505 506 507 508 509 510 511 512 513

LOCAL_MODULE := doc-comment-check

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		-parsecomments

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

514 515
LOCAL_UNINSTALLABLE_MODULE := true

516 517 518 519 520 521 522
include $(BUILD_DROIDDOC)

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

droidcore: doc-comment-check-docs

523 524 525 526 527 528 529 530 531 532
# ====  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)
533
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
534 535 536 537 538

LOCAL_MODULE := offline-sdk

LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
539
                $(web_docs_sample_code_flags) \
540
                -offlinemode \
541 542 543 544
		-title "Android SDK" \
		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
		-sdkvalues $(OUT_DOCS) \
545
		-hdf android.whichdoc offline
546

547 548 549 550 551 552 553

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): \
554
	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
	$(hide) mkdir -p $(dir $@)
	$(hide) $(ACP) $< $@

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

# ==== docs for the web (on the google 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)
572
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
573 574 575 576

LOCAL_MODULE := online-sdk

LOCAL_DROIDDOC_OPTIONS:= \
577 578 579
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
		$(web_docs_sample_code_flags) \
		-toroot / \
580 581
		-hdf android.whichdoc online \
		-hdf template.showLanguageMenu true
582 583 584 585 586

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

include $(BUILD_DROIDDOC)

587
# explicitly specify that online-sdk depends on framework-res and any generated docs
588
$(full_target): framework-res-package-target
589 590 591 592 593 594 595 596 597 598

# ==== 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)
599
LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
600
LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
601 602 603 604

LOCAL_MODULE := hidden
LOCAL_DROIDDOC_OPTIONS:=\
		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
605 606
		-title "Android SDK - Including hidden APIs."
#		-hidden
607 608 609 610 611 612 613 614

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

include $(BUILD_DROIDDOC)

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

615 616 617 618
# NOTICE notes for non-obvious sections
# apache-http - covered by the Apache Commons section.


619
ext_dirs := \
620
	../../external/nist-sip/java \
621
	../../external/apache-http/src \
622 623
	../../external/tagsoup/src \
	../../external/libphonenumber/java/src
624 625 626

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

627 628 629
ext_res_dirs := \
	../../external/libphonenumber/java/src

630 631 632 633 634 635 636
# ====  the library  =========================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(ext_src_files)

LOCAL_NO_STANDARD_LIBRARIES := true
LOCAL_JAVA_LIBRARIES := core
637
LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
638
LOCAL_MODULE_TAGS := optional
639 640
LOCAL_MODULE := ext

641 642 643
LOCAL_NO_EMMA_INSTRUMENT := true
LOCAL_NO_EMMA_COMPILE := true

644 645
LOCAL_DX_FLAGS := --core-library

646 647 648 649 650 651 652 653 654 655 656
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