Android.mk revision 02a09927cc56a0f9035783a47877b79b0d2f1b56
1#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(call my-dir)
17
18# We have a special case here where we build the library's resources
19# independently from its code, so we need to find where the resource
20# class source got placed in the course of building the resources.
21# Thus, the magic here.
22# Also, this module cannot depend directly on the R.java file; if it
23# did, the PRIVATE_* vars for R.java wouldn't be guaranteed to be correct.
24# Instead, it depends on the R.stamp file, which lists the corresponding
25# R.java file as a prerequisite.
26# TODO: find a more appropriate way to do this.
27framework_res_source_path := APPS/framework-res_intermediates/src
28
29# the library
30# ============================================================
31include $(CLEAR_VARS)
32
33# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
34LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
35
36# EventLogTags files.
37LOCAL_SRC_FILES += \
38       core/java/android/content/EventLogTags.logtags \
39       core/java/android/webkit/EventLogTags.logtags \
40       telephony/java/com/android/internal/telephony/EventLogTags.logtags \
41
42# The following filters out code we are temporarily not including at all.
43# TODO: Move AWT and beans (and associated harmony code) back into libcore.
44# TODO: Maybe remove javax.microedition entirely?
45# TODO: Move SyncML (org.mobilecontrol.*) into its own library.
46LOCAL_SRC_FILES := $(filter-out \
47			org/mobilecontrol/% \
48			,$(LOCAL_SRC_FILES))
49
50# Include a different set of source files when building a debug build.
51# TODO: Maybe build these into a separate .jar and put it on the classpath
52#       in front of framework.jar.
53# NOTE: Do not use this as an example; this is a very special situation.
54#       Do not modify LOCAL_SRC_FILES based on any variable other
55#       than TARGET_BUILD_TYPE, otherwise builds can become inconsistent.
56ifeq ($(TARGET_BUILD_TYPE),debug)
57  LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug)
58else
59  LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug)
60endif
61
62## READ ME: ########################################################
63##
64## When updating this list of aidl files, consider if that aidl is
65## part of the SDK API.  If it is, also add it to the list below that
66## is preprocessed and distributed with the SDK.  This list should
67## not contain any aidl files for parcelables, but the one below should
68## if you intend for 3rd parties to be able to send those objects
69## across process boundaries.
70##
71## READ ME: ########################################################
72LOCAL_SRC_FILES += \
73	core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
74	core/java/android/accessibilityservice/IEventListener.aidl \
75	core/java/android/accounts/IAccountManager.aidl \
76	core/java/android/accounts/IAccountManagerResponse.aidl \
77	core/java/android/accounts/IAccountAuthenticator.aidl \
78	core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
79	core/java/android/app/IActivityController.aidl \
80	core/java/android/app/IActivityPendingResult.aidl \
81	core/java/android/app/IActivityWatcher.aidl \
82	core/java/android/app/IAlarmManager.aidl \
83	core/java/android/app/IBackupAgent.aidl \
84	core/java/android/app/IInstrumentationWatcher.aidl \
85	core/java/android/app/INotificationManager.aidl \
86	core/java/android/app/ISearchManager.aidl \
87	core/java/android/app/ISearchManagerCallback.aidl \
88	core/java/android/app/IServiceConnection.aidl \
89	core/java/android/app/IThumbnailReceiver.aidl \
90	core/java/android/app/ITransientNotification.aidl \
91	core/java/android/app/IUiModeManager.aidl \
92	core/java/android/app/IWallpaperManager.aidl \
93	core/java/android/app/IWallpaperManagerCallback.aidl \
94	core/java/android/app/admin/IDevicePolicyManager.aidl \
95	core/java/android/app/backup/IBackupManager.aidl \
96	core/java/android/app/backup/IRestoreObserver.aidl \
97	core/java/android/app/backup/IRestoreSession.aidl \
98	core/java/android/bluetooth/IBluetooth.aidl \
99	core/java/android/bluetooth/IBluetoothA2dp.aidl \
100	core/java/android/bluetooth/IBluetoothCallback.aidl \
101	core/java/android/bluetooth/IBluetoothHeadset.aidl \
102	core/java/android/bluetooth/IBluetoothPbap.aidl \
103	core/java/android/content/IContentService.aidl \
104	core/java/android/content/IIntentReceiver.aidl \
105	core/java/android/content/IIntentSender.aidl \
106	core/java/android/content/ISyncAdapter.aidl \
107	core/java/android/content/ISyncContext.aidl \
108	core/java/android/content/ISyncStatusObserver.aidl \
109	core/java/android/content/pm/IPackageDataObserver.aidl \
110	core/java/android/content/pm/IPackageDeleteObserver.aidl \
111	core/java/android/content/pm/IPackageInstallObserver.aidl \
112	core/java/android/content/pm/IPackageManager.aidl \
113	core/java/android/content/pm/IPackageMoveObserver.aidl \
114	core/java/android/content/pm/IPackageStatsObserver.aidl \
115	core/java/android/database/IContentObserver.aidl \
116	core/java/android/net/IConnectivityManager.aidl \
117	core/java/android/net/INetworkManagementEventObserver.aidl \
118	core/java/android/net/IThrottleManager.aidl \
119	core/java/android/os/IHardwareService.aidl \
120	core/java/android/os/IMessenger.aidl \
121	core/java/android/os/storage/IMountService.aidl \
122	core/java/android/os/storage/IMountServiceListener.aidl \
123	core/java/android/os/storage/IMountShutdownObserver.aidl \
124	core/java/android/os/INetworkManagementService.aidl \
125	core/java/android/os/INetStatService.aidl \
126	core/java/android/os/IPermissionController.aidl \
127	core/java/android/os/IPowerManager.aidl \
128    core/java/android/os/IRemoteCallback.aidl \
129	core/java/android/os/IVibratorService.aidl \
130	core/java/android/service/urlrenderer/IUrlRendererService.aidl \
131	core/java/android/service/urlrenderer/IUrlRendererCallback.aidl \
132    core/java/android/service/wallpaper/IWallpaperConnection.aidl \
133    core/java/android/service/wallpaper/IWallpaperEngine.aidl \
134    core/java/android/service/wallpaper/IWallpaperService.aidl \
135	core/java/android/text/IClipboard.aidl \
136	core/java/android/view/accessibility/IAccessibilityManager.aidl \
137	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
138	core/java/android/view/IApplicationToken.aidl \
139	core/java/android/view/IOnKeyguardExitResult.aidl \
140	core/java/android/view/IRotationWatcher.aidl \
141	core/java/android/view/IWindow.aidl \
142	core/java/android/view/IWindowManager.aidl \
143	core/java/android/view/IWindowSession.aidl \
144	core/java/android/speech/IRecognitionListener.aidl \
145	core/java/android/speech/IRecognitionService.aidl \
146	core/java/android/speech/tts/ITts.aidl \
147	core/java/android/speech/tts/ITtsCallback.aidl \
148	core/java/com/android/internal/app/IBatteryStats.aidl \
149	core/java/com/android/internal/app/IUsageStats.aidl \
150	core/java/com/android/internal/app/IMediaContainerService.aidl \
151	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
152	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
153	core/java/com/android/internal/backup/IBackupTransport.aidl \
154	core/java/com/android/internal/os/IDropBoxManagerService.aidl \
155	core/java/com/android/internal/os/IResultReceiver.aidl \
156	core/java/com/android/internal/statusbar/IStatusBar.aidl \
157	core/java/com/android/internal/statusbar/IStatusBarService.aidl \
158	core/java/com/android/internal/view/IInputContext.aidl \
159	core/java/com/android/internal/view/IInputContextCallback.aidl \
160	core/java/com/android/internal/view/IInputMethod.aidl \
161	core/java/com/android/internal/view/IInputMethodCallback.aidl \
162	core/java/com/android/internal/view/IInputMethodClient.aidl \
163	core/java/com/android/internal/view/IInputMethodManager.aidl \
164	core/java/com/android/internal/view/IInputMethodSession.aidl \
165	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
166	location/java/android/location/ICountryDetector.aidl \
167	location/java/android/location/ICountryListener.aidl \
168	location/java/android/location/IGeocodeProvider.aidl \
169	location/java/android/location/IGpsStatusListener.aidl \
170	location/java/android/location/IGpsStatusProvider.aidl \
171	location/java/android/location/ILocationListener.aidl \
172	location/java/android/location/ILocationManager.aidl \
173	location/java/android/location/ILocationProvider.aidl \
174	location/java/android/location/INetInitiatedListener.aidl \
175	media/java/android/media/IAudioService.aidl \
176	media/java/android/media/IAudioFocusDispatcher.aidl \
177	media/java/android/media/IMediaScannerListener.aidl \
178	media/java/android/media/IMediaScannerService.aidl \
179	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
180	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
181	telephony/java/com/android/internal/telephony/ITelephony.aidl \
182	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
183	telephony/java/com/android/internal/telephony/IIccPhoneBook.aidl \
184	telephony/java/com/android/internal/telephony/ISms.aidl \
185	wifi/java/android/net/wifi/IWifiManager.aidl \
186	telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
187	vpn/java/android/net/vpn/IVpnService.aidl \
188
189
190# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
191LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
192
193LOCAL_INTERMEDIATE_SOURCES := \
194			$(framework_res_source_path)/android/R.java \
195			$(framework_res_source_path)/android/Manifest.java \
196			$(framework_res_source_path)/com/android/internal/R.java
197
198LOCAL_NO_STANDARD_LIBRARIES := true
199LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
200
201LOCAL_MODULE := framework
202LOCAL_MODULE_CLASS := JAVA_LIBRARIES
203
204LOCAL_NO_EMMA_INSTRUMENT := true
205LOCAL_NO_EMMA_COMPILE := true
206
207# List of classes and interfaces which should be loaded by the Zygote.
208LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
209
210#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
211
212LOCAL_DX_FLAGS := --core-library
213
214include $(BUILD_JAVA_LIBRARY)
215
216# Make sure that R.java and Manifest.java are built before we build
217# the source for this library.
218framework_res_R_stamp := \
219	$(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
220$(full_classes_compiled_jar): $(framework_res_R_stamp)
221
222# Make sure that framework-res is installed when framework is.
223$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk
224
225framework_built := $(LOCAL_BUILT_MODULE)
226
227# AIDL files to be preprocessed and included in the SDK,
228# relative to the root of the build tree.
229# ============================================================
230aidl_files := \
231	frameworks/base/core/java/android/accounts/IAccountManager.aidl \
232	frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
233	frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
234	frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
235	frameworks/base/core/java/android/app/Notification.aidl \
236	frameworks/base/core/java/android/app/PendingIntent.aidl \
237	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
238	frameworks/base/core/java/android/content/ComponentName.aidl \
239	frameworks/base/core/java/android/content/Intent.aidl \
240	frameworks/base/core/java/android/content/IntentSender.aidl \
241	frameworks/base/core/java/android/content/PeriodicSync.aidl \
242	frameworks/base/core/java/android/content/SyncStats.aidl \
243	frameworks/base/core/java/android/content/res/Configuration.aidl \
244	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
245	frameworks/base/core/java/android/net/Uri.aidl \
246	frameworks/base/core/java/android/os/Bundle.aidl \
247	frameworks/base/core/java/android/os/DropBoxManager.aidl \
248	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
249	frameworks/base/core/java/android/os/ParcelUuid.aidl \
250	frameworks/base/core/java/android/view/KeyEvent.aidl \
251	frameworks/base/core/java/android/view/MotionEvent.aidl \
252	frameworks/base/core/java/android/view/Surface.aidl \
253	frameworks/base/core/java/android/view/WindowManager.aidl \
254	frameworks/base/core/java/android/widget/RemoteViews.aidl \
255	frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
256	frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
257	frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \
258	frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
259	frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
260	frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
261	frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
262	frameworks/base/graphics/java/android/graphics/Rect.aidl \
263	frameworks/base/graphics/java/android/graphics/Region.aidl \
264	frameworks/base/location/java/android/location/Criteria.aidl \
265	frameworks/base/location/java/android/location/Location.aidl \
266	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
267	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
268	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
269	frameworks/base/vpn/java/android/net/vpn/IVpnService.aidl \
270
271gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
272$(gen): PRIVATE_SRC_FILES := $(aidl_files)
273ALL_SDK_FILES += $(gen)
274$(gen): $(aidl_files) | $(AIDL)
275		@echo Aidl Preprocess: $@
276		$(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
277
278# the documentation
279# ============================================================
280
281# TODO: deal with com/google/android/googleapps
282packages_to_document := \
283	android \
284	javax/microedition/khronos
285
286# Search through the base framework dirs for these packages.
287# The result will be relative to frameworks/base.
288fwbase_dirs_to_document := \
289	test-runner/src \
290	$(patsubst $(LOCAL_PATH)/%,%, \
291	  $(wildcard \
292	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
293	      $(addprefix $(dir)/, $(packages_to_document)) \
294	     ) \
295	   ) \
296	 )
297
298# Pass a special "fake-out" version of some classes to the doc/API tools.
299# ConfigBuildFlags uses this trick to prevent certain fields from appearing
300# as "final" in the official SDK APIs.
301fwbase_dirs_to_document += core/config/sdk
302
303# These are relative to libcore
304# Intentionally not included from libcore:
305#     icu openssl suncompat support
306libcore_to_document := \
307	dalvik/src/main/java/dalvik \
308	json/src/main/java \
309	junit/src/main/java \
310	luni/src/main/java/java \
311	luni/src/main/java/javax \
312	luni/src/main/java/org/xml/sax \
313	luni/src/main/java/org/w3c \
314	xml/src/main/java/org/xmlpull/v1 \
315
316non_base_dirs := \
317	../../external/apache-http/src/org/apache/http
318
319# These are relative to frameworks/base
320dirs_to_document := \
321	$(fwbase_dirs_to_document) \
322	$(non_base_dirs) \
323	$(addprefix ../../libcore/, $(libcore_to_document))
324
325html_dirs := \
326	$(FRAMEWORKS_BASE_SUBDIRS) \
327	$(non_base_dirs)
328
329# These are relative to frameworks/base
330framework_docs_LOCAL_SRC_FILES := \
331	$(call find-other-java-files, $(dirs_to_document)) \
332	$(call find-other-html-files, $(html_dirs))
333
334# This is used by ide.mk as the list of source files that are
335# always included.
336INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
337
338framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
339	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
340
341framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
342			$(framework_res_source_path)/android/R.java \
343			$(framework_res_source_path)/android/Manifest.java \
344			$(framework_res_source_path)/com/android/internal/R.java
345
346framework_docs_LOCAL_JAVA_LIBRARIES := \
347			bouncycastle \
348			core \
349			ext \
350			framework \
351
352framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
353framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
354# The since flag (-since N.xml API_LEVEL) is used to add API Level information
355# to the reference documentation. Must be in order of oldest to newest.
356framework_docs_LOCAL_DROIDDOC_OPTIONS := \
357    -since ./frameworks/base/api/1.xml 1 \
358    -since ./frameworks/base/api/2.xml 2 \
359    -since ./frameworks/base/api/3.xml 3 \
360    -since ./frameworks/base/api/4.xml 4 \
361    -since ./frameworks/base/api/5.xml 5 \
362    -since ./frameworks/base/api/6.xml 6 \
363    -since ./frameworks/base/api/7.xml 7 \
364    -since ./frameworks/base/api/8.xml 8 \
365    -since ./frameworks/base/api/current.xml HC \
366		-error 1 -error 2 -warning 3 -error 4 -error 6 -error 8 \
367		-overview $(LOCAL_PATH)/core/java/overview.html
368
369framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework)
370
371sample_dir := development/samples
372
373# the list here should match the list of samples included in the sdk samples package
374# (see development/build/sdk.atree)
375web_docs_sample_code_flags := \
376		-hdf android.hasSamples 1 \
377		-samplecode $(sample_dir)/ApiDemos \
378		            resources/samples/ApiDemos "API Demos" \
379		-samplecode $(sample_dir)/BackupRestore \
380		            resources/samples/BackupRestore "Backup and Restore" \
381		-samplecode $(sample_dir)/BluetoothChat \
382		            resources/samples/BluetoothChat "Bluetooth Chat" \
383		-samplecode $(sample_dir)/BusinessCard \
384		            resources/samples/BusinessCard "Business Card" \
385		-samplecode $(sample_dir)/ContactManager \
386		            resources/samples/ContactManager "Contact Manager" \
387                -samplecode $(sample_dir)/CubeLiveWallpaper \
388                            resources/samples/CubeLiveWallpaper "Live Wallpaper" \
389		-samplecode $(sample_dir)/Home \
390		            resources/samples/Home "Home" \
391		-samplecode $(sample_dir)/HeavyWeight \
392		            resources/samples/HeavyWeight "Heavy Weight App" \
393		-samplecode $(sample_dir)/JetBoy \
394		            resources/samples/JetBoy "JetBoy" \
395		-samplecode $(sample_dir)/LunarLander \
396		            resources/samples/LunarLander "Lunar Lander" \
397		-samplecode $(sample_dir)/MultiResolution \
398		            resources/samples/MultiResolution "Multiple Resolutions" \
399		-samplecode $(sample_dir)/NotePad \
400		            resources/samples/NotePad "Note Pad" \
401		-samplecode $(sample_dir)/SampleSyncAdapter \
402		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
403		-samplecode $(sample_dir)/SearchableDictionary \
404		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
405		-samplecode $(sample_dir)/Snake \
406		            resources/samples/Snake "Snake" \
407		-samplecode $(sample_dir)/SoftKeyboard \
408		            resources/samples/SoftKeyboard "Soft Keyboard" \
409		-samplecode $(sample_dir)/Spinner  \
410		            resources/samples/Spinner "Spinner" \
411		-samplecode $(sample_dir)/SpinnerTest \
412		            resources/samples/SpinnerTest "SpinnerTest" \
413		-samplecode $(sample_dir)/TicTacToeLib  \
414		            resources/samples/TicTacToeLib "TicTacToeLib" \
415		-samplecode $(sample_dir)/TicTacToeMain \
416		            resources/samples/TicTacToeMain "TicTacToeMain" \
417		-samplecode $(sample_dir)/Wiktionary \
418		            resources/samples/Wiktionary "Wiktionary" \
419		-samplecode $(sample_dir)/WiktionarySimple \
420		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
421		-samplecode $(sample_dir)/VoiceRecognitionService \
422		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
423		-samplecode $(sample_dir)/XmlAdapters \
424		            resources/samples/XmlAdapters "XML Adapters"
425
426## SDK version identifiers used in the published docs
427  # major[.minor] version for current SDK. (full releases only)
428framework_docs_SDK_VERSION:=2.2
429  # release version (ie "Release x")  (full releases only)
430framework_docs_SDK_REL_ID:=1
431  # name of current SDK directory (full releases only)
432framework_docs_SDK_CURRENT_DIR:=$(framework_docs_SDK_VERSION)_r$(framework_docs_SDK_REL_ID)
433  # flag to build offline docs for a preview release
434framework_docs_SDK_PREVIEW:=0
435
436## Latest ADT version identifiers, for reference from published docs
437framework_docs_ADT_VERSION:=0.9.7
438framework_docs_ADT_DOWNLOAD:=ADT-0.9.7.zip
439framework_docs_ADT_BYTES:=8033750
440framework_docs_ADT_CHECKSUM:=de2431c8d4786d127ae5bfc95b4605df
441
442framework_docs_LOCAL_DROIDDOC_OPTIONS += \
443		-hdf sdk.version $(framework_docs_SDK_VERSION) \
444		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
445		-hdf sdk.current $(framework_docs_SDK_CURRENT_DIR) \
446		-hdf adt.zip.version $(framework_docs_ADT_VERSION) \
447		-hdf adt.zip.download $(framework_docs_ADT_DOWNLOAD) \
448		-hdf adt.zip.bytes $(framework_docs_ADT_BYTES) \
449		-hdf adt.zip.checksum $(framework_docs_ADT_CHECKSUM) 
450
451# ====  the api stubs and current.xml ===========================
452include $(CLEAR_VARS)
453
454LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
455LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
456LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
457LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
458LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
459LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
460LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
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
471LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk
472
473include $(BUILD_DROIDDOC)
474
475# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
476$(full_target): $(framework_built) $(gen)
477$(INTERNAL_PLATFORM_API_FILE): $(full_target)
478$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
479
480# ====  static html in the sdk ==================================
481include $(CLEAR_VARS)
482
483LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
484LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
485LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
486LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
487LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
488LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
489LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
490
491LOCAL_MODULE := offline-sdk
492
493LOCAL_DROIDDOC_OPTIONS:=\
494		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
495                $(web_docs_sample_code_flags) \
496                -offlinemode \
497		-title "Android SDK" \
498		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
499		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
500		-sdkvalues $(OUT_DOCS) \
501		-hdf android.whichdoc offline 
502
503ifeq ($(framework_docs_SDK_PREVIEW),true)
504  LOCAL_DROIDDOC_OPTIONS += -hdf sdk.current preview 
505endif
506
507LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
508LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk
509
510include $(BUILD_DROIDDOC)
511
512static_doc_index_redirect := $(out_dir)/index.html
513$(static_doc_index_redirect): \
514	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
515	$(hide) mkdir -p $(dir $@)
516	$(hide) $(ACP) $< $@
517
518$(full_target): $(static_doc_index_redirect)
519$(full_target): $(framework_built)
520
521
522# ==== docs for the web (on the google app engine server) =======================
523include $(CLEAR_VARS)
524
525LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
526LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
527LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
528LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
529LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
530LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
531LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
532LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
533
534LOCAL_MODULE := online-sdk
535
536LOCAL_DROIDDOC_OPTIONS:= \
537		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
538		$(web_docs_sample_code_flags) \
539		-toroot / \
540		-hdf android.whichdoc online \
541		-hdf template.showLanguageMenu true
542
543LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
544LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk
545
546include $(BUILD_DROIDDOC)
547
548# explicitly specify that online-sdk depends on framework-res.
549$(full_target): framework-res-package-target
550
551# ==== docs that have all of the stuff that's @hidden =======================
552include $(CLEAR_VARS)
553
554LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
555LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
556LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
557LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
558LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
559LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
560LOCAL_ADDITIONAL_JAVA_DIR:=$(call intermediates-dir-for,JAVA_LIBRARIES,framework)
561
562LOCAL_MODULE := hidden
563LOCAL_DROIDDOC_OPTIONS:=\
564		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
565        -title "Android SDK - Including hidden APIs."
566#        -hidden
567
568LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
569LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk
570
571include $(BUILD_DROIDDOC)
572
573# Build ext.jar
574# ============================================================
575
576ext_dirs := \
577	../../external/apache-http/src \
578	../../external/tagsoup/src \
579	../../external/libphonenumber/java/src
580
581ext_src_files := $(call all-java-files-under,$(ext_dirs))
582
583ext_res_dirs := \
584	../../external/libphonenumber/java/src
585
586# ====  the library  =========================================
587include $(CLEAR_VARS)
588
589LOCAL_SRC_FILES := $(ext_src_files)
590
591LOCAL_NO_STANDARD_LIBRARIES := true
592LOCAL_JAVA_LIBRARIES := core
593LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
594LOCAL_MODULE := ext
595
596LOCAL_NO_EMMA_INSTRUMENT := true
597LOCAL_NO_EMMA_COMPILE := true
598
599include $(BUILD_JAVA_LIBRARY)
600
601
602# Include subdirectory makefiles
603# ============================================================
604
605# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
606# team really wants is to build the stuff defined by this makefile.
607ifeq (,$(ONE_SHOT_MAKEFILE))
608include $(call first-makefiles-under,$(LOCAL_PATH))
609endif
610