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# 16LOCAL_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. 27framework_res_source_path := APPS/framework-res_intermediates/src 28 29# the library 30# ============================================================ 31include $(CLEAR_VARS) 32 33# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk 34LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS)) 35 36# EventLogTags files. 37LOCAL_SRC_FILES += \ 38 core/java/android/content/EventLogTags.logtags \ 39 core/java/android/webkit/EventLogTags.logtags \ 40 telephony/java/com/android/internal/telephony/EventLogTags.logtags \ 41 42# The following filters out code we are temporarily not including at all. 43# TODO: Move AWT and beans (and associated harmony code) back into libcore. 44# TODO: Maybe remove javax.microedition entirely? 45# TODO: Move SyncML (org.mobilecontrol.*) into its own library. 46LOCAL_SRC_FILES := $(filter-out \ 47 org/mobilecontrol/% \ 48 ,$(LOCAL_SRC_FILES)) 49 50# Include a different set of source files when building a debug build. 51# TODO: Maybe build these into a separate .jar and put it on the classpath 52# in front of framework.jar. 53# NOTE: Do not use this as an example; this is a very special situation. 54# Do not modify LOCAL_SRC_FILES based on any variable other 55# than TARGET_BUILD_TYPE, otherwise builds can become inconsistent. 56ifeq ($(TARGET_BUILD_TYPE),debug) 57 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug) 58else 59 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug) 60endif 61 62## READ ME: ######################################################## 63## 64## When updating this list of aidl files, consider if that aidl is 65## part of the SDK API. If it is, also add it to the list below that 66## is preprocessed and distributed with the SDK. This list should 67## not contain any aidl files for parcelables, but the one below should 68## if you intend for 3rd parties to be able to send those objects 69## across process boundaries. 70## 71## READ ME: ######################################################## 72LOCAL_SRC_FILES += \ 73 core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \ 74 core/java/android/accessibilityservice/IEventListener.aidl \ 75 core/java/android/accounts/IAccountManager.aidl \ 76 core/java/android/accounts/IAccountManagerResponse.aidl \ 77 core/java/android/accounts/IAccountAuthenticator.aidl \ 78 core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ 79 core/java/android/app/IActivityController.aidl \ 80 core/java/android/app/IActivityPendingResult.aidl \ 81 core/java/android/app/IActivityWatcher.aidl \ 82 core/java/android/app/IAlarmManager.aidl \ 83 core/java/android/app/IBackupAgent.aidl \ 84 core/java/android/app/IInstrumentationWatcher.aidl \ 85 core/java/android/app/INotificationManager.aidl \ 86 core/java/android/app/ISearchManager.aidl \ 87 core/java/android/app/ISearchManagerCallback.aidl \ 88 core/java/android/app/IServiceConnection.aidl \ 89 core/java/android/app/IThumbnailReceiver.aidl \ 90 core/java/android/app/ITransientNotification.aidl \ 91 core/java/android/app/IUiModeManager.aidl \ 92 core/java/android/app/IWallpaperManager.aidl \ 93 core/java/android/app/IWallpaperManagerCallback.aidl \ 94 core/java/android/app/admin/IDevicePolicyManager.aidl \ 95 core/java/android/app/backup/IBackupManager.aidl \ 96 core/java/android/app/backup/IRestoreObserver.aidl \ 97 core/java/android/app/backup/IRestoreSession.aidl \ 98 core/java/android/bluetooth/IBluetooth.aidl \ 99 core/java/android/bluetooth/IBluetoothA2dp.aidl \ 100 core/java/android/bluetooth/IBluetoothCallback.aidl \ 101 core/java/android/bluetooth/IBluetoothHeadset.aidl \ 102 core/java/android/bluetooth/IBluetoothPbap.aidl \ 103 core/java/android/content/IContentService.aidl \ 104 core/java/android/content/IIntentReceiver.aidl \ 105 core/java/android/content/IIntentSender.aidl \ 106 core/java/android/content/ISyncAdapter.aidl \ 107 core/java/android/content/ISyncContext.aidl \ 108 core/java/android/content/ISyncStatusObserver.aidl \ 109 core/java/android/content/pm/IPackageDataObserver.aidl \ 110 core/java/android/content/pm/IPackageDeleteObserver.aidl \ 111 core/java/android/content/pm/IPackageInstallObserver.aidl \ 112 core/java/android/content/pm/IPackageManager.aidl \ 113 core/java/android/content/pm/IPackageMoveObserver.aidl \ 114 core/java/android/content/pm/IPackageStatsObserver.aidl \ 115 core/java/android/database/IContentObserver.aidl \ 116 core/java/android/hardware/usb/IUsbManager.aidl \ 117 core/java/android/net/IConnectivityManager.aidl \ 118 core/java/android/net/INetworkManagementEventObserver.aidl \ 119 core/java/android/net/IThrottleManager.aidl \ 120 core/java/android/nfc/ILlcpConnectionlessSocket.aidl \ 121 core/java/android/nfc/ILlcpServiceSocket.aidl \ 122 core/java/android/nfc/ILlcpSocket.aidl \ 123 core/java/android/nfc/INfcAdapter.aidl \ 124 core/java/android/nfc/INfcAdapterExtras.aidl \ 125 core/java/android/nfc/INfcTag.aidl \ 126 core/java/android/nfc/IP2pInitiator.aidl \ 127 core/java/android/nfc/IP2pTarget.aidl \ 128 core/java/android/os/IHardwareService.aidl \ 129 core/java/android/os/IMessenger.aidl \ 130 core/java/android/os/INetworkManagementService.aidl \ 131 core/java/android/os/INetStatService.aidl \ 132 core/java/android/os/IPermissionController.aidl \ 133 core/java/android/os/IPowerManager.aidl \ 134 core/java/android/os/IRemoteCallback.aidl \ 135 core/java/android/os/IVibratorService.aidl \ 136 core/java/android/service/urlrenderer/IUrlRendererService.aidl \ 137 core/java/android/service/urlrenderer/IUrlRendererCallback.aidl \ 138 core/java/android/service/wallpaper/IWallpaperConnection.aidl \ 139 core/java/android/service/wallpaper/IWallpaperEngine.aidl \ 140 core/java/android/service/wallpaper/IWallpaperService.aidl \ 141 core/java/android/text/IClipboard.aidl \ 142 core/java/android/view/accessibility/IAccessibilityManager.aidl \ 143 core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \ 144 core/java/android/view/IApplicationToken.aidl \ 145 core/java/android/view/IOnKeyguardExitResult.aidl \ 146 core/java/android/view/IRotationWatcher.aidl \ 147 core/java/android/view/IWindow.aidl \ 148 core/java/android/view/IWindowManager.aidl \ 149 core/java/android/view/IWindowSession.aidl \ 150 core/java/android/speech/IRecognitionListener.aidl \ 151 core/java/android/speech/IRecognitionService.aidl \ 152 core/java/android/speech/tts/ITts.aidl \ 153 core/java/android/speech/tts/ITtsCallback.aidl \ 154 core/java/com/android/internal/app/IBatteryStats.aidl \ 155 core/java/com/android/internal/app/IUsageStats.aidl \ 156 core/java/com/android/internal/app/IMediaContainerService.aidl \ 157 core/java/com/android/internal/appwidget/IAppWidgetService.aidl \ 158 core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \ 159 core/java/com/android/internal/backup/IBackupTransport.aidl \ 160 core/java/com/android/internal/os/IDropBoxManagerService.aidl \ 161 core/java/com/android/internal/os/IResultReceiver.aidl \ 162 core/java/com/android/internal/statusbar/IStatusBar.aidl \ 163 core/java/com/android/internal/statusbar/IStatusBarService.aidl \ 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 \ 171 location/java/android/location/IGeocodeProvider.aidl \ 172 location/java/android/location/IGpsStatusListener.aidl \ 173 location/java/android/location/IGpsStatusProvider.aidl \ 174 location/java/android/location/ILocationListener.aidl \ 175 location/java/android/location/ILocationManager.aidl \ 176 location/java/android/location/ILocationProvider.aidl \ 177 location/java/android/location/INetInitiatedListener.aidl \ 178 media/java/android/media/IAudioService.aidl \ 179 media/java/android/media/IAudioFocusDispatcher.aidl \ 180 media/java/android/media/IMediaScannerListener.aidl \ 181 media/java/android/media/IMediaScannerService.aidl \ 182 telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ 183 telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ 184 telephony/java/com/android/internal/telephony/ITelephony.aidl \ 185 telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ 186 telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \ 187 telephony/java/com/android/internal/telephony/ISms.aidl \ 188 wifi/java/android/net/wifi/IWifiManager.aidl \ 189 telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \ 190 vpn/java/android/net/vpn/IVpnService.aidl \ 191 voip/java/android/net/sip/ISipSession.aidl \ 192 voip/java/android/net/sip/ISipSessionListener.aidl \ 193 voip/java/android/net/sip/ISipService.aidl 194# 195 196 197# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk 198LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) 199 200LOCAL_INTERMEDIATE_SOURCES := \ 201 $(framework_res_source_path)/android/R.java \ 202 $(framework_res_source_path)/android/Manifest.java \ 203 $(framework_res_source_path)/com/android/internal/R.java 204 205LOCAL_NO_STANDARD_LIBRARIES := true 206LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext 207 208LOCAL_MODULE := framework 209LOCAL_MODULE_CLASS := JAVA_LIBRARIES 210 211LOCAL_NO_EMMA_INSTRUMENT := true 212LOCAL_NO_EMMA_COMPILE := true 213 214# List of classes and interfaces which should be loaded by the Zygote. 215LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes 216 217#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt 218 219LOCAL_DX_FLAGS := --core-library 220 221include $(BUILD_JAVA_LIBRARY) 222 223# Make sure that R.java and Manifest.java are built before we build 224# the source for this library. 225framework_res_R_stamp := \ 226 $(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp 227$(full_classes_compiled_jar): $(framework_res_R_stamp) 228 229# Make sure that framework-res is installed when framework is. 230$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk 231 232framework_built := $(LOCAL_BUILT_MODULE) 233 234# AIDL files to be preprocessed and included in the SDK, 235# relative to the root of the build tree. 236# ============================================================ 237aidl_files := \ 238 frameworks/base/core/java/android/accounts/IAccountManager.aidl \ 239 frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \ 240 frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \ 241 frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \ 242 frameworks/base/core/java/android/app/Notification.aidl \ 243 frameworks/base/core/java/android/app/PendingIntent.aidl \ 244 frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \ 245 frameworks/base/core/java/android/content/ComponentName.aidl \ 246 frameworks/base/core/java/android/content/Intent.aidl \ 247 frameworks/base/core/java/android/content/IntentSender.aidl \ 248 frameworks/base/core/java/android/content/PeriodicSync.aidl \ 249 frameworks/base/core/java/android/content/SyncStats.aidl \ 250 frameworks/base/core/java/android/content/res/Configuration.aidl \ 251 frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \ 252 frameworks/base/core/java/android/net/Uri.aidl \ 253 frameworks/base/core/java/android/nfc/NdefMessage.aidl \ 254 frameworks/base/core/java/android/nfc/NdefRecord.aidl \ 255 frameworks/base/core/java/android/nfc/Tag.aidl \ 256 frameworks/base/core/java/android/os/Bundle.aidl \ 257 frameworks/base/core/java/android/os/DropBoxManager.aidl \ 258 frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \ 259 frameworks/base/core/java/android/os/ParcelUuid.aidl \ 260 frameworks/base/core/java/android/view/KeyEvent.aidl \ 261 frameworks/base/core/java/android/view/MotionEvent.aidl \ 262 frameworks/base/core/java/android/view/Surface.aidl \ 263 frameworks/base/core/java/android/view/WindowManager.aidl \ 264 frameworks/base/core/java/android/widget/RemoteViews.aidl \ 265 frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \ 266 frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \ 267 frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \ 268 frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \ 269 frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \ 270 frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \ 271 frameworks/base/graphics/java/android/graphics/Bitmap.aidl \ 272 frameworks/base/graphics/java/android/graphics/Rect.aidl \ 273 frameworks/base/graphics/java/android/graphics/Region.aidl \ 274 frameworks/base/location/java/android/location/Criteria.aidl \ 275 frameworks/base/location/java/android/location/Location.aidl \ 276 frameworks/base/telephony/java/android/telephony/ServiceState.aidl \ 277 frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ 278 frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \ 279 frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \ 280 281gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl 282$(gen): PRIVATE_SRC_FILES := $(aidl_files) 283ALL_SDK_FILES += $(gen) 284$(gen): $(aidl_files) | $(AIDL) 285 @echo Aidl Preprocess: $@ 286 $(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES) 287 288# the documentation 289# ============================================================ 290 291# TODO: deal with com/google/android/googleapps 292packages_to_document := \ 293 android \ 294 javax/microedition/khronos 295 296# Search through the base framework dirs for these packages. 297# The result will be relative to frameworks/base. 298fwbase_dirs_to_document := \ 299 test-runner/src \ 300 $(patsubst $(LOCAL_PATH)/%,%, \ 301 $(wildcard \ 302 $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \ 303 $(addprefix $(dir)/, $(packages_to_document)) \ 304 ) \ 305 ) \ 306 ) 307 308# Pass a special "fake-out" version of some classes to the doc/API tools. 309# ConfigBuildFlags uses this trick to prevent certain fields from appearing 310# as "final" in the official SDK APIs. 311fwbase_dirs_to_document += core/config/sdk 312 313# These are relative to libcore 314# Intentionally not included from libcore: 315# icu openssl suncompat support 316libcore_to_document := \ 317 dalvik/src/main/java/dalvik \ 318 json/src/main/java \ 319 junit/src/main/java \ 320 luni/src/main/java/java \ 321 luni/src/main/java/javax \ 322 luni/src/main/java/org/xml/sax \ 323 luni/src/main/java/org/w3c \ 324 xml/src/main/java/org/xmlpull/v1 \ 325 326non_base_dirs := \ 327 ../../external/apache-http/src/org/apache/http 328 329# These are relative to frameworks/base 330dirs_to_document := \ 331 $(fwbase_dirs_to_document) \ 332 $(non_base_dirs) \ 333 $(addprefix ../../libcore/, $(libcore_to_document)) 334 335html_dirs := \ 336 $(FRAMEWORKS_BASE_SUBDIRS) \ 337 $(non_base_dirs) 338 339# These are relative to frameworks/base 340framework_docs_LOCAL_SRC_FILES := \ 341 $(call find-other-java-files, $(dirs_to_document)) \ 342 $(call find-other-html-files, $(html_dirs)) 343 344# This is used by ide.mk as the list of source files that are 345# always included. 346INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document)) 347 348framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \ 349 $(FRAMEWORKS_BASE_JAVA_SRC_DIRS) 350 351framework_docs_LOCAL_INTERMEDIATE_SOURCES := \ 352 $(framework_res_source_path)/android/R.java \ 353 $(framework_res_source_path)/android/Manifest.java \ 354 $(framework_res_source_path)/com/android/internal/R.java 355 356framework_docs_LOCAL_JAVA_LIBRARIES := \ 357 bouncycastle \ 358 core \ 359 ext \ 360 framework \ 361 362framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES 363framework_docs_LOCAL_DROIDDOC_HTML_DIR := $(LOCAL_PATH)/docs/html $(OUT_DOCS)/gen 364# The since flag (-since N.xml API_LEVEL) is used to add API Level information 365# to the reference documentation. Must be in order of oldest to newest. 366framework_docs_LOCAL_DROIDDOC_OPTIONS := \ 367 -knowntags ./frameworks/base/docs/knowntags.txt \ 368 -since ./frameworks/base/api/1.xml 1 \ 369 -since ./frameworks/base/api/2.xml 2 \ 370 -since ./frameworks/base/api/3.xml 3 \ 371 -since ./frameworks/base/api/4.xml 4 \ 372 -since ./frameworks/base/api/5.xml 5 \ 373 -since ./frameworks/base/api/6.xml 6 \ 374 -since ./frameworks/base/api/7.xml 7 \ 375 -since ./frameworks/base/api/8.xml 8 \ 376 -since ./frameworks/base/api/9.xml 9 \ 377 -since ./frameworks/base/api/10.xml 10 \ 378 -werror -hide 13 \ 379 -overview $(LOCAL_PATH)/core/java/overview.html 380 381framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework) 382 383framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \ 384 frameworks/base/docs/knowntags.txt 385 386sample_dir := development/samples 387 388# the list here should match the list of samples included in the sdk samples package 389# (see development/build/sdk.atree) 390web_docs_sample_code_flags := \ 391 -hdf android.hasSamples 1 \ 392 -samplecode $(sample_dir)/AccessibilityService \ 393 resources/samples/AccessibilityService "Accessibility Service" \ 394 -samplecode $(sample_dir)/ApiDemos \ 395 resources/samples/ApiDemos "API Demos" \ 396 -samplecode $(sample_dir)/AccelerometerPlay \ 397 resources/samples/AccelerometerPlay "Accelerometer Play" \ 398 -samplecode $(sample_dir)/BackupRestore \ 399 resources/samples/BackupRestore "Backup and Restore" \ 400 -samplecode $(sample_dir)/BluetoothChat \ 401 resources/samples/BluetoothChat "Bluetooth Chat" \ 402 -samplecode $(sample_dir)/BusinessCard \ 403 resources/samples/BusinessCard "Business Card" \ 404 -samplecode $(sample_dir)/ContactManager \ 405 resources/samples/ContactManager "Contact Manager" \ 406 -samplecode $(sample_dir)/CubeLiveWallpaper \ 407 resources/samples/CubeLiveWallpaper "Live Wallpaper" \ 408 -samplecode $(sample_dir)/Home \ 409 resources/samples/Home "Home" \ 410 -samplecode $(sample_dir)/JetBoy \ 411 resources/samples/JetBoy "JetBoy" \ 412 -samplecode $(sample_dir)/LunarLander \ 413 resources/samples/LunarLander "Lunar Lander" \ 414 -samplecode $(sample_dir)/MultiResolution \ 415 resources/samples/MultiResolution "Multiple Resolutions" \ 416 -samplecode $(sample_dir)/NotePad \ 417 resources/samples/NotePad "Note Pad" \ 418 -samplecode $(sample_dir)/SampleSyncAdapter \ 419 resources/samples/SampleSyncAdapter "Sample Sync Adapter" \ 420 -samplecode $(sample_dir)/SearchableDictionary \ 421 resources/samples/SearchableDictionary "Searchable Dictionary v2" \ 422 -samplecode $(sample_dir)/SipDemo \ 423 resources/samples/SipDemo "SIP Demo" \ 424 -samplecode $(sample_dir)/Snake \ 425 resources/samples/Snake "Snake" \ 426 -samplecode $(sample_dir)/SoftKeyboard \ 427 resources/samples/SoftKeyboard "Soft Keyboard" \ 428 -samplecode $(sample_dir)/Spinner \ 429 resources/samples/Spinner "Spinner" \ 430 -samplecode $(sample_dir)/SpinnerTest \ 431 resources/samples/SpinnerTest "SpinnerTest" \ 432 -samplecode $(sample_dir)/TicTacToeLib \ 433 resources/samples/TicTacToeLib "TicTacToeLib" \ 434 -samplecode $(sample_dir)/TicTacToeMain \ 435 resources/samples/TicTacToeMain "TicTacToeMain" \ 436 -samplecode $(sample_dir)/Wiktionary \ 437 resources/samples/Wiktionary "Wiktionary" \ 438 -samplecode $(sample_dir)/WiktionarySimple \ 439 resources/samples/WiktionarySimple "Wiktionary (Simplified)" \ 440 -samplecode $(sample_dir)/VoiceRecognitionService \ 441 resources/samples/VoiceRecognitionService "Voice Recognition Service" \ 442 -samplecode $(sample_dir)/NFCDemo \ 443 resources/samples/NFCDemo "NFC Demo" 444 445## SDK version identifiers used in the published docs 446 # major[.minor] version for current SDK. (full releases only) 447framework_docs_SDK_VERSION:=2.3 448 # release version (ie "Release x") (full releases only) 449framework_docs_SDK_REL_ID:=1 450 # flag to build offline docs for a preview release 451framework_docs_SDK_PREVIEW:=true 452 453framework_docs_LOCAL_DROIDDOC_OPTIONS += \ 454 -hdf sdk.version $(framework_docs_SDK_VERSION) \ 455 -hdf sdk.rel.id $(framework_docs_SDK_REL_ID) 456 457# ==== the api stubs and current.xml =========================== 458include $(CLEAR_VARS) 459 460LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) 461LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) 462LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) 463LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) 464LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) 465LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) 466LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) 467LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) 468 469LOCAL_MODULE := api-stubs 470 471LOCAL_DROIDDOC_OPTIONS:=\ 472 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ 473 -stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \ 474 -apixml $(INTERNAL_PLATFORM_API_FILE) \ 475 -nodocs 476 477LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk 478LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk 479 480include $(BUILD_DROIDDOC) 481 482$(full_target): $(framework_built) 483$(INTERNAL_PLATFORM_API_FILE): $(full_target) 484$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE)) 485 486# ==== check javadoc comments but don't generate docs ======== 487include $(CLEAR_VARS) 488 489LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) 490LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) 491LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) 492LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) 493LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) 494LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) 495LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) 496LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) 497 498LOCAL_MODULE := doc-comment-check 499 500LOCAL_DROIDDOC_OPTIONS:=\ 501 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ 502 -parsecomments 503 504LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk 505LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk 506 507include $(BUILD_DROIDDOC) 508 509# $(gen), i.e. framework.aidl, is also needed while building against the current stub. 510$(full_target): $(framework_built) $(gen) 511 512droidcore: doc-comment-check-docs 513 514# ==== static html in the sdk ================================== 515include $(CLEAR_VARS) 516 517LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) 518LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) 519LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) 520LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) 521LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) 522LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) 523LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) 524LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) 525 526LOCAL_MODULE := offline-sdk 527 528LOCAL_DROIDDOC_OPTIONS:=\ 529 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ 530 $(web_docs_sample_code_flags) \ 531 -offlinemode \ 532 -title "Android SDK" \ 533 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \ 534 -todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \ 535 -sdkvalues $(OUT_DOCS) \ 536 -hdf android.whichdoc offline 537 538ifeq ($(framework_docs_SDK_PREVIEW),true) 539 LOCAL_DROIDDOC_OPTIONS += -hdf sdk.preview true 540endif 541 542LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk 543LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk 544 545include $(BUILD_DROIDDOC) 546 547static_doc_index_redirect := $(out_dir)/index.html 548$(static_doc_index_redirect): \ 549 $(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP) 550 $(hide) mkdir -p $(dir $@) 551 $(hide) $(ACP) $< $@ 552 553$(full_target): $(static_doc_index_redirect) 554$(full_target): $(framework_built) 555 556 557# ==== docs for the web (on the google app engine server) ======================= 558include $(CLEAR_VARS) 559 560LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) 561LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) 562LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) 563LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) 564LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) 565LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) 566LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) 567LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) 568LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) 569 570LOCAL_MODULE := online-sdk 571 572LOCAL_DROIDDOC_OPTIONS:= \ 573 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ 574 $(web_docs_sample_code_flags) \ 575 -toroot / \ 576 -hdf android.whichdoc online \ 577 -hdf template.showLanguageMenu true 578 579ifeq ($(framework_docs_SDK_PREVIEW),true) 580 LOCAL_DROIDDOC_OPTIONS += -hdf sdk.preview true 581endif 582 583LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk 584LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk 585 586include $(BUILD_DROIDDOC) 587 588# explicitly specify that online-sdk depends on framework-res and any generated docs 589$(full_target): framework-res-package-target $(ALL_GENERATED_DOCS) 590 591# ==== docs that have all of the stuff that's @hidden ======================= 592include $(CLEAR_VARS) 593 594LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) 595LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) 596LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework 597LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) 598LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) 599LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) 600LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework) 601LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) 602 603LOCAL_MODULE := hidden 604LOCAL_DROIDDOC_OPTIONS:=\ 605 $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ 606 -title "Android SDK - Including hidden APIs." 607# -hidden 608 609LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk 610LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk 611 612include $(BUILD_DROIDDOC) 613 614# Build ext.jar 615# ============================================================ 616 617ext_dirs := \ 618 ../../external/nist-sip/java \ 619 ../../external/apache-http/src \ 620 ../../external/tagsoup/src 621 622ext_src_files := $(call all-java-files-under,$(ext_dirs)) 623 624# ==== the library ========================================= 625include $(CLEAR_VARS) 626 627LOCAL_SRC_FILES := $(ext_src_files) 628 629LOCAL_NO_STANDARD_LIBRARIES := true 630LOCAL_JAVA_LIBRARIES := core 631LOCAL_MODULE_TAGS := optional 632LOCAL_MODULE := ext 633 634LOCAL_NO_EMMA_INSTRUMENT := true 635LOCAL_NO_EMMA_COMPILE := true 636 637include $(BUILD_JAVA_LIBRARY) 638 639 640# Include subdirectory makefiles 641# ============================================================ 642 643# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework 644# team really wants is to build the stuff defined by this makefile. 645ifeq (,$(ONE_SHOT_MAKEFILE)) 646include $(call first-makefiles-under,$(LOCAL_PATH)) 647endif 648