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