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