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