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