Android.mk revision 0ba4ac747c9e14bdbd9ffb417ac125eb2790a87f
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		-werror -hide 113 \
370		-overview $(LOCAL_PATH)/core/java/overview.html
371
372framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework)
373
374framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
375    frameworks/base/docs/knowntags.txt
376
377sample_dir := development/samples
378
379# the list here should match the list of samples included in the sdk samples package
380# (see development/build/sdk.atree)
381web_docs_sample_code_flags := \
382		-hdf android.hasSamples 1 \
383		-samplecode $(sample_dir)/ApiDemos \
384		            resources/samples/ApiDemos "API Demos" \
385		-samplecode $(sample_dir)/BackupRestore \
386		            resources/samples/BackupRestore "Backup and Restore" \
387		-samplecode $(sample_dir)/BluetoothChat \
388		            resources/samples/BluetoothChat "Bluetooth Chat" \
389		-samplecode $(sample_dir)/BusinessCard \
390		            resources/samples/BusinessCard "Business Card" \
391		-samplecode $(sample_dir)/ContactManager \
392		            resources/samples/ContactManager "Contact Manager" \
393                -samplecode $(sample_dir)/CubeLiveWallpaper \
394                            resources/samples/CubeLiveWallpaper "Live Wallpaper" \
395		-samplecode $(sample_dir)/Home \
396		            resources/samples/Home "Home" \
397		-samplecode $(sample_dir)/HeavyWeight \
398		            resources/samples/HeavyWeight "Heavy Weight App" \
399		-samplecode $(sample_dir)/JetBoy \
400		            resources/samples/JetBoy "JetBoy" \
401		-samplecode $(sample_dir)/LunarLander \
402		            resources/samples/LunarLander "Lunar Lander" \
403		-samplecode $(sample_dir)/MultiResolution \
404		            resources/samples/MultiResolution "Multiple Resolutions" \
405		-samplecode $(sample_dir)/NotePad \
406		            resources/samples/NotePad "Note Pad" \
407		-samplecode $(sample_dir)/SampleSyncAdapter \
408		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
409		-samplecode $(sample_dir)/SearchableDictionary \
410		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
411		-samplecode $(sample_dir)/Snake \
412		            resources/samples/Snake "Snake" \
413		-samplecode $(sample_dir)/SoftKeyboard \
414		            resources/samples/SoftKeyboard "Soft Keyboard" \
415		-samplecode $(sample_dir)/Spinner  \
416		            resources/samples/Spinner "Spinner" \
417		-samplecode $(sample_dir)/SpinnerTest \
418		            resources/samples/SpinnerTest "SpinnerTest" \
419		-samplecode $(sample_dir)/TicTacToeLib  \
420		            resources/samples/TicTacToeLib "TicTacToeLib" \
421		-samplecode $(sample_dir)/TicTacToeMain \
422		            resources/samples/TicTacToeMain "TicTacToeMain" \
423		-samplecode $(sample_dir)/Wiktionary \
424		            resources/samples/Wiktionary "Wiktionary" \
425		-samplecode $(sample_dir)/WiktionarySimple \
426		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
427		-samplecode $(sample_dir)/VoiceRecognitionService \
428		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
429		-samplecode $(sample_dir)/XmlAdapters \
430		            resources/samples/XmlAdapters "XML Adapters"
431
432## SDK version identifiers used in the published docs
433  # major[.minor] version for current SDK. (full releases only)
434framework_docs_SDK_VERSION:=2.2
435  # release version (ie "Release x")  (full releases only)
436framework_docs_SDK_REL_ID:=1
437  # flag to build offline docs for a preview release
438framework_docs_SDK_PREVIEW:=0
439
440framework_docs_LOCAL_DROIDDOC_OPTIONS += \
441		-hdf sdk.version $(framework_docs_SDK_VERSION) \
442		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID)
443
444# ====  the api stubs and current.xml ===========================
445include $(CLEAR_VARS)
446
447LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
448LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
449LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
450LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
451LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
452LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
453LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
454LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
455
456LOCAL_MODULE := api-stubs
457
458LOCAL_DROIDDOC_OPTIONS:=\
459		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
460		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
461		-apixml $(INTERNAL_PLATFORM_API_FILE) \
462		-nodocs
463
464LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
465
466LOCAL_UNINSTALLABLE_MODULE := true
467
468include $(BUILD_DROIDDOC)
469
470# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
471$(full_target): $(framework_built) $(gen)
472$(INTERNAL_PLATFORM_API_FILE): $(full_target)
473$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
474
475# ====  check javadoc comments but don't generate docs ========
476include $(CLEAR_VARS)
477
478LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
479LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
480LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
481LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
482LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
483LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
484LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
485LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
486
487LOCAL_MODULE := doc-comment-check
488
489LOCAL_DROIDDOC_OPTIONS:=\
490		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
491		-parsecomments
492
493LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
494
495LOCAL_UNINSTALLABLE_MODULE := true
496
497include $(BUILD_DROIDDOC)
498
499# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
500$(full_target): $(framework_built) $(gen)
501
502droidcore: doc-comment-check-docs
503
504# ====  static html in the sdk ==================================
505include $(CLEAR_VARS)
506
507LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
508LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
509LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
510LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
511LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
512LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
513LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
514LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
515
516LOCAL_MODULE := offline-sdk
517
518LOCAL_DROIDDOC_OPTIONS:=\
519		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
520                $(web_docs_sample_code_flags) \
521                -offlinemode \
522		-title "Android SDK" \
523		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
524		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
525		-sdkvalues $(OUT_DOCS) \
526		-hdf android.whichdoc offline
527
528ifeq ($(framework_docs_SDK_PREVIEW),true)
529  LOCAL_DROIDDOC_OPTIONS += -hdf sdk.preview true
530endif
531
532LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
533
534include $(BUILD_DROIDDOC)
535
536static_doc_index_redirect := $(out_dir)/index.html
537$(static_doc_index_redirect): \
538	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
539	$(hide) mkdir -p $(dir $@)
540	$(hide) $(ACP) $< $@
541
542$(full_target): $(static_doc_index_redirect)
543$(full_target): $(framework_built)
544
545# ==== docs for the web (on the google app engine server) =======================
546include $(CLEAR_VARS)
547
548LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
549LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
550LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
551LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
552LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
553LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
554LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
555LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
556LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
557
558LOCAL_MODULE := online-sdk
559
560LOCAL_DROIDDOC_OPTIONS:= \
561		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
562		$(web_docs_sample_code_flags) \
563		-toroot / \
564		-hdf android.whichdoc online \
565		-hdf template.showLanguageMenu true
566
567LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
568
569include $(BUILD_DROIDDOC)
570
571# explicitly specify that online-sdk depends on framework-res and any generated docs
572$(full_target): framework-res-package-target
573
574# ==== docs that have all of the stuff that's @hidden =======================
575include $(CLEAR_VARS)
576
577LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
578LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
579LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
580LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
581LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
582LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
583LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework)
584LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
585
586LOCAL_MODULE := hidden
587LOCAL_DROIDDOC_OPTIONS:=\
588		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
589		-title "Android SDK - Including hidden APIs."
590#		-hidden
591
592LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
593
594include $(BUILD_DROIDDOC)
595
596# Build ext.jar
597# ============================================================
598
599ext_dirs := \
600	../../external/nist-sip/java \
601	../../external/apache-http/src \
602	../../external/tagsoup/src \
603	../../external/libphonenumber/java/src
604
605ext_src_files := $(call all-java-files-under,$(ext_dirs))
606
607ext_res_dirs := \
608	../../external/libphonenumber/java/src
609
610# ====  the library  =========================================
611include $(CLEAR_VARS)
612
613LOCAL_SRC_FILES := $(ext_src_files)
614
615LOCAL_NO_STANDARD_LIBRARIES := true
616LOCAL_JAVA_LIBRARIES := core
617LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
618LOCAL_MODULE := ext
619
620LOCAL_NO_EMMA_INSTRUMENT := true
621LOCAL_NO_EMMA_COMPILE := true
622
623include $(BUILD_JAVA_LIBRARY)
624
625
626# Include subdirectory makefiles
627# ============================================================
628
629# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
630# team really wants is to build the stuff defined by this makefile.
631ifeq (,$(ONE_SHOT_MAKEFILE))
632include $(call first-makefiles-under,$(LOCAL_PATH))
633endif
634