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