Android.mk revision 33a436da507e77d5c106f8ffe5dea07f429cf270
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/speech/tts/EventLogTags.logtags \
40       core/java/android/webkit/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## READ ME: ########################################################
51##
52## When updating this list of aidl files, consider if that aidl is
53## part of the SDK API.  If it is, also add it to the list below that
54## is preprocessed and distributed with the SDK.  This list should
55## not contain any aidl files for parcelables, but the one below should
56## if you intend for 3rd parties to be able to send those objects
57## across process boundaries.
58##
59## READ ME: ########################################################
60LOCAL_SRC_FILES += \
61	core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl \
62	core/java/android/accessibilityservice/IAccessibilityServiceClient.aidl \
63	core/java/android/accounts/IAccountManager.aidl \
64	core/java/android/accounts/IAccountManagerResponse.aidl \
65	core/java/android/accounts/IAccountAuthenticator.aidl \
66	core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
67	core/java/android/app/IActivityController.aidl \
68	core/java/android/app/IActivityPendingResult.aidl \
69	core/java/android/app/IAlarmManager.aidl \
70	core/java/android/app/IBackupAgent.aidl \
71	core/java/android/app/IInstrumentationWatcher.aidl \
72	core/java/android/app/INotificationManager.aidl \
73	core/java/android/app/IProcessObserver.aidl \
74	core/java/android/app/ISearchManager.aidl \
75	core/java/android/app/ISearchManagerCallback.aidl \
76	core/java/android/app/IServiceConnection.aidl \
77	core/java/android/app/IStopUserCallback.aidl \
78	core/java/android/app/IThumbnailReceiver.aidl \
79	core/java/android/app/IThumbnailRetriever.aidl \
80	core/java/android/app/ITransientNotification.aidl \
81	core/java/android/app/IUiModeManager.aidl \
82    core/java/android/app/IUserSwitchObserver.aidl \
83	core/java/android/app/IWallpaperManager.aidl \
84	core/java/android/app/IWallpaperManagerCallback.aidl \
85	core/java/android/app/admin/IDevicePolicyManager.aidl \
86	core/java/android/app/backup/IBackupManager.aidl \
87	core/java/android/app/backup/IFullBackupRestoreObserver.aidl \
88	core/java/android/app/backup/IRestoreObserver.aidl \
89	core/java/android/app/backup/IRestoreSession.aidl \
90	core/java/android/bluetooth/IBluetooth.aidl \
91	core/java/android/bluetooth/IBluetoothA2dp.aidl \
92	core/java/android/bluetooth/IBluetoothCallback.aidl \
93	core/java/android/bluetooth/IBluetoothHeadset.aidl \
94	core/java/android/bluetooth/IBluetoothHeadsetPhone.aidl \
95	core/java/android/bluetooth/IBluetoothHealth.aidl \
96	core/java/android/bluetooth/IBluetoothHealthCallback.aidl \
97	core/java/android/bluetooth/IBluetoothInputDevice.aidl \
98	core/java/android/bluetooth/IBluetoothPan.aidl \
99	core/java/android/bluetooth/IBluetoothManager.aidl \
100	core/java/android/bluetooth/IBluetoothManagerCallback.aidl \
101	core/java/android/bluetooth/IBluetoothPbap.aidl \
102	core/java/android/bluetooth/IBluetoothStateChangeCallback.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/ISerialManager.aidl \
119	core/java/android/hardware/display/IDisplayManager.aidl \
120	core/java/android/hardware/display/IDisplayManagerCallback.aidl \
121	core/java/android/hardware/input/IInputManager.aidl \
122	core/java/android/hardware/input/IInputDevicesChangedListener.aidl \
123	core/java/android/hardware/usb/IUsbManager.aidl \
124	core/java/android/net/IConnectivityManager.aidl \
125	core/java/android/net/INetworkManagementEventObserver.aidl \
126	core/java/android/net/IThrottleManager.aidl \
127	core/java/android/net/INetworkPolicyListener.aidl \
128	core/java/android/net/INetworkPolicyManager.aidl \
129	core/java/android/net/INetworkStatsService.aidl \
130	core/java/android/net/INetworkStatsSession.aidl \
131	core/java/android/net/nsd/INsdManager.aidl \
132	core/java/android/nfc/INdefPushCallback.aidl \
133	core/java/android/nfc/INfcAdapter.aidl \
134	core/java/android/nfc/INfcAdapterExtras.aidl \
135	core/java/android/nfc/INfcTag.aidl \
136	core/java/android/os/ICancellationSignal.aidl \
137	core/java/android/os/IHardwareService.aidl \
138	core/java/android/os/IMessenger.aidl \
139	core/java/android/os/INetworkManagementService.aidl \
140	core/java/android/os/IPermissionController.aidl \
141	core/java/android/os/IPowerManager.aidl \
142	core/java/android/os/IRemoteCallback.aidl \
143	core/java/android/os/ISchedulingPolicyService.aidl \
144	core/java/android/os/IUpdateLock.aidl \
145        core/java/android/os/IUserManager.aidl \
146	core/java/android/os/IVibratorService.aidl \
147	core/java/android/service/dreams/IDreamManager.aidl \
148	core/java/android/service/dreams/IDreamService.aidl \
149	core/java/android/service/wallpaper/IWallpaperConnection.aidl \
150	core/java/android/service/wallpaper/IWallpaperEngine.aidl \
151	core/java/android/service/wallpaper/IWallpaperService.aidl \
152	core/java/android/view/accessibility/IAccessibilityInteractionConnection.aidl\
153	core/java/android/view/accessibility/IAccessibilityInteractionConnectionCallback.aidl\
154	core/java/android/view/accessibility/IAccessibilityManager.aidl \
155	core/java/android/view/accessibility/IAccessibilityManagerClient.aidl \
156	core/java/android/view/IApplicationToken.aidl \
157	core/java/android/view/IDisplayContentChangeListener.aidl \
158	core/java/android/view/IInputFilter.aidl \
159	core/java/android/view/IInputFilterHost.aidl \
160	core/java/android/view/IOnKeyguardExitResult.aidl \
161	core/java/android/view/IRotationWatcher.aidl \
162	core/java/android/view/IWindow.aidl \
163	core/java/android/view/IWindowManager.aidl \
164	core/java/android/view/IWindowSession.aidl \
165	core/java/android/speech/IRecognitionListener.aidl \
166	core/java/android/speech/IRecognitionService.aidl \
167	core/java/android/speech/tts/ITextToSpeechCallback.aidl \
168	core/java/android/speech/tts/ITextToSpeechService.aidl \
169	core/java/com/android/internal/app/IBatteryStats.aidl \
170	core/java/com/android/internal/app/IUsageStats.aidl \
171	core/java/com/android/internal/app/IMediaContainerService.aidl \
172	core/java/com/android/internal/appwidget/IAppWidgetService.aidl \
173	core/java/com/android/internal/appwidget/IAppWidgetHost.aidl \
174	core/java/com/android/internal/backup/IBackupTransport.aidl \
175	core/java/com/android/internal/policy/IFaceLockCallback.aidl \
176	core/java/com/android/internal/policy/IFaceLockInterface.aidl \
177	core/java/com/android/internal/os/IDropBoxManagerService.aidl \
178	core/java/com/android/internal/os/IResultReceiver.aidl \
179	core/java/com/android/internal/statusbar/IStatusBar.aidl \
180	core/java/com/android/internal/statusbar/IStatusBarService.aidl \
181	core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
182	core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
183	core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
184	core/java/com/android/internal/textservice/ITextServicesManager.aidl \
185	core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
186	core/java/com/android/internal/view/IInputContext.aidl \
187	core/java/com/android/internal/view/IInputContextCallback.aidl \
188	core/java/com/android/internal/view/IInputMethod.aidl \
189	core/java/com/android/internal/view/IInputMethodCallback.aidl \
190	core/java/com/android/internal/view/IInputMethodClient.aidl \
191	core/java/com/android/internal/view/IInputMethodManager.aidl \
192	core/java/com/android/internal/view/IInputMethodSession.aidl \
193	core/java/com/android/internal/widget/ILockSettings.aidl \
194	core/java/com/android/internal/widget/IRemoteViewsFactory.aidl \
195	core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl \
196	keystore/java/android/security/IKeyChainAliasCallback.aidl \
197	keystore/java/android/security/IKeyChainService.aidl \
198	location/java/android/location/ICountryDetector.aidl \
199	location/java/android/location/ICountryListener.aidl \
200	location/java/android/location/IGeocodeProvider.aidl \
201	location/java/android/location/IGpsStatusListener.aidl \
202	location/java/android/location/IGpsStatusProvider.aidl \
203	location/java/android/location/ILocationListener.aidl \
204	location/java/android/location/ILocationManager.aidl \
205	location/java/android/location/INetInitiatedListener.aidl \
206	location/java/com/android/internal/location/ILocationProvider.aidl \
207	media/java/android/media/IAudioService.aidl \
208	media/java/android/media/IAudioFocusDispatcher.aidl \
209	media/java/android/media/IAudioRoutesObserver.aidl \
210	media/java/android/media/IMediaScannerListener.aidl \
211	media/java/android/media/IMediaScannerService.aidl \
212	media/java/android/media/IRemoteControlClient.aidl \
213	media/java/android/media/IRemoteControlDisplay.aidl \
214	media/java/android/media/IRemoteVolumeObserver.aidl \
215	media/java/android/media/IRingtonePlayer.aidl \
216	telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \
217	telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
218	telephony/java/com/android/internal/telephony/ITelephony.aidl \
219	telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
220	telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
221	telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
222	wifi/java/android/net/wifi/IWifiManager.aidl \
223	wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \
224	voip/java/android/net/sip/ISipSession.aidl \
225	voip/java/android/net/sip/ISipSessionListener.aidl \
226	voip/java/android/net/sip/ISipService.aidl
227#
228
229
230# FRAMEWORKS_BASE_JAVA_SRC_DIRS comes from build/core/pathmap.mk
231LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
232
233LOCAL_INTERMEDIATE_SOURCES := \
234			$(framework_res_source_path)/android/R.java \
235			$(framework_res_source_path)/android/Manifest.java \
236			$(framework_res_source_path)/com/android/internal/R.java
237
238LOCAL_NO_STANDARD_LIBRARIES := true
239LOCAL_JAVA_LIBRARIES := bouncycastle core core-junit ext
240
241LOCAL_MODULE := framework
242LOCAL_MODULE_CLASS := JAVA_LIBRARIES
243
244# List of classes and interfaces which should be loaded by the Zygote.
245LOCAL_JAVA_RESOURCE_FILES += $(LOCAL_PATH)/preloaded-classes
246
247#LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
248
249LOCAL_DX_FLAGS := --core-library
250
251include $(BUILD_JAVA_LIBRARY)
252
253# Make sure that R.java and Manifest.java are built before we build
254# the source for this library.
255framework_res_R_stamp := \
256	$(call intermediates-dir-for,APPS,framework-res,,COMMON)/src/R.stamp
257$(full_classes_compiled_jar): $(framework_res_R_stamp)
258
259# Make sure that framework-res is installed when framework is.
260$(LOCAL_INSTALLED_MODULE): | $(dir $(LOCAL_INSTALLED_MODULE))framework-res.apk
261
262framework_built := $(call java-lib-deps,framework)
263
264# AIDL files to be preprocessed and included in the SDK,
265# relative to the root of the build tree.
266# ============================================================
267aidl_files := \
268	frameworks/base/core/java/android/accounts/IAccountManager.aidl \
269	frameworks/base/core/java/android/accounts/IAccountManagerResponse.aidl \
270	frameworks/base/core/java/android/accounts/IAccountAuthenticator.aidl \
271	frameworks/base/core/java/android/accounts/IAccountAuthenticatorResponse.aidl \
272	frameworks/base/core/java/android/app/Notification.aidl \
273	frameworks/base/core/java/android/app/PendingIntent.aidl \
274	frameworks/base/core/java/android/bluetooth/BluetoothDevice.aidl \
275	frameworks/base/core/java/android/bluetooth/BluetoothHealthAppConfiguration.aidl \
276	frameworks/base/core/java/android/content/ComponentName.aidl \
277	frameworks/base/core/java/android/content/Intent.aidl \
278	frameworks/base/core/java/android/content/IntentSender.aidl \
279	frameworks/base/core/java/android/content/PeriodicSync.aidl \
280	frameworks/base/core/java/android/content/SyncStats.aidl \
281	frameworks/base/core/java/android/content/res/Configuration.aidl \
282	frameworks/base/core/java/android/appwidget/AppWidgetProviderInfo.aidl \
283	frameworks/base/core/java/android/net/Uri.aidl \
284	frameworks/base/core/java/android/nfc/NdefMessage.aidl \
285	frameworks/base/core/java/android/nfc/NdefRecord.aidl \
286	frameworks/base/core/java/android/nfc/Tag.aidl \
287	frameworks/base/core/java/android/os/Bundle.aidl \
288	frameworks/base/core/java/android/os/DropBoxManager.aidl \
289	frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
290	frameworks/base/core/java/android/os/ParcelUuid.aidl \
291	frameworks/base/core/java/android/view/KeyEvent.aidl \
292	frameworks/base/core/java/android/view/MotionEvent.aidl \
293	frameworks/base/core/java/android/view/Surface.aidl \
294	frameworks/base/core/java/android/view/WindowManager.aidl \
295	frameworks/base/core/java/android/widget/RemoteViews.aidl \
296	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerService.aidl \
297	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSession.aidl \
298	frameworks/base/core/java/com/android/internal/textservice/ISpellCheckerSessionListener.aidl \
299	frameworks/base/core/java/com/android/internal/textservice/ITextServicesManager.aidl \
300	frameworks/base/core/java/com/android/internal/textservice/ITextServicesSessionListener.aidl \
301	frameworks/base/core/java/com/android/internal/view/IInputContext.aidl \
302	frameworks/base/core/java/com/android/internal/view/IInputMethod.aidl \
303	frameworks/base/core/java/com/android/internal/view/IInputMethodCallback.aidl \
304	frameworks/base/core/java/com/android/internal/view/IInputMethodClient.aidl \
305	frameworks/base/core/java/com/android/internal/view/IInputMethodManager.aidl \
306	frameworks/base/core/java/com/android/internal/view/IInputMethodSession.aidl \
307	frameworks/base/graphics/java/android/graphics/Bitmap.aidl \
308	frameworks/base/graphics/java/android/graphics/Rect.aidl \
309	frameworks/base/graphics/java/android/graphics/Region.aidl \
310	frameworks/base/location/java/android/location/Criteria.aidl \
311	frameworks/base/location/java/android/location/Geofence.aidl \
312	frameworks/base/location/java/android/location/Location.aidl \
313	frameworks/base/location/java/android/location/LocationRequest.aidl \
314	frameworks/base/location/java/com/android/internal/location/ProviderProperties.aidl \
315	frameworks/base/location/java/com/android/internal/location/ProviderRequest.aidl \
316	frameworks/base/telephony/java/android/telephony/ServiceState.aidl \
317	frameworks/base/telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \
318	frameworks/base/telephony/java/com/android/internal/telephony/ITelephony.aidl \
319
320gen := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
321$(gen): PRIVATE_SRC_FILES := $(aidl_files)
322ALL_SDK_FILES += $(gen)
323$(gen): $(aidl_files) | $(AIDL)
324		@echo Aidl Preprocess: $@
325		$(hide) $(AIDL) --preprocess $@ $(PRIVATE_SRC_FILES)
326
327# the documentation
328# ============================================================
329
330# TODO: deal with com/google/android/googleapps
331packages_to_document := \
332	android \
333	javax/microedition/khronos
334
335# Search through the base framework dirs for these packages.
336# The result will be relative to frameworks/base.
337fwbase_dirs_to_document := \
338	test-runner/src \
339	$(patsubst $(LOCAL_PATH)/%,%, \
340	  $(wildcard \
341	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
342	      $(addprefix $(dir)/, $(packages_to_document)) \
343	     ) \
344	   ) \
345	 )
346
347# include definition of libcore_to_document
348include libcore/Docs.mk
349
350# include definition of junit_to_document
351include external/junit/Common.mk
352
353non_base_dirs := \
354	../../external/apache-http/src/org/apache/http \
355	../opt/telephony/src/java/android/telephony \
356	../opt/telephony/src/java/android/telephony/gsm \
357
358# These are relative to frameworks/base
359dirs_to_check_apis := \
360  $(fwbase_dirs_to_document) \
361	$(non_base_dirs)
362
363# These are relative to frameworks/base
364# FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk
365dirs_to_document := \
366	$(dirs_to_check_apis) \
367  $(addprefix ../../, $(FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS))
368
369# These are relative to frameworks/base
370html_dirs := \
371	$(FRAMEWORKS_BASE_SUBDIRS) \
372	$(non_base_dirs)
373
374# Common sources for doc check and api check
375common_src_files := \
376	$(call find-other-html-files, $(html_dirs)) \
377	$(addprefix ../../libcore/, $(call libcore_to_document, $(LOCAL_PATH)/../../libcore)) \
378	$(addprefix ../../external/junit/, $(call junit_to_document, $(LOCAL_PATH)/../../external/junit))
379
380# These are relative to frameworks/base
381framework_docs_LOCAL_SRC_FILES := \
382	$(call find-other-java-files, $(dirs_to_document)) \
383	$(common_src_files)
384
385# These are relative to frameworks/base
386framework_docs_LOCAL_API_CHECK_SRC_FILES := \
387	$(call find-other-java-files, $(dirs_to_check_apis)) \
388	$(common_src_files)
389
390# This is used by ide.mk as the list of source files that are
391# always included.
392INTERNAL_SDK_SOURCE_DIRS := $(addprefix $(LOCAL_PATH)/,$(dirs_to_document))
393
394framework_docs_LOCAL_DROIDDOC_SOURCE_PATH := \
395	$(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
396
397framework_docs_LOCAL_INTERMEDIATE_SOURCES := \
398			$(framework_res_source_path)/android/R.java \
399			$(framework_res_source_path)/android/Manifest.java \
400			$(framework_res_source_path)/com/android/internal/R.java
401
402framework_docs_LOCAL_JAVA_LIBRARIES := \
403			bouncycastle \
404			core \
405			ext \
406			framework \
407			mms-common \
408			telephony-common \
409
410framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
411framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
412# The since flag (-since N.xml API_LEVEL) is used to add API Level information
413# to the reference documentation. Must be in order of oldest to newest.
414framework_docs_LOCAL_DROIDDOC_OPTIONS := \
415    -knowntags ./frameworks/base/docs/knowntags.txt \
416    -since ./frameworks/base/api/1.xml 1 \
417    -since ./frameworks/base/api/2.xml 2 \
418    -since ./frameworks/base/api/3.xml 3 \
419    -since ./frameworks/base/api/4.xml 4 \
420    -since ./frameworks/base/api/5.xml 5 \
421    -since ./frameworks/base/api/6.xml 6 \
422    -since ./frameworks/base/api/7.xml 7 \
423    -since ./frameworks/base/api/8.xml 8 \
424    -since ./frameworks/base/api/9.xml 9 \
425    -since ./frameworks/base/api/10.xml 10 \
426    -since ./frameworks/base/api/11.xml 11 \
427    -since ./frameworks/base/api/12.xml 12 \
428    -since ./frameworks/base/api/13.xml 13 \
429    -since ./frameworks/base/api/14.txt 14 \
430    -since ./frameworks/base/api/15.txt 15 \
431    -since ./frameworks/base/api/16.txt 16 \
432		-werror -hide 113 \
433		-overview $(LOCAL_PATH)/core/java/overview.html
434
435framework_docs_LOCAL_ADDITIONAL_JAVA_DIR:= $(call intermediates-dir-for,JAVA_LIBRARIES,framework,,COMMON)
436
437framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES := \
438    frameworks/base/docs/knowntags.txt
439
440sample_dir := development/samples
441
442# the list here should match the list of samples included in the sdk samples package
443# (see development/build/sdk.atree)
444web_docs_sample_code_flags := \
445		-hdf android.hasSamples 1 \
446		-samplecode $(sample_dir)/AccelerometerPlay \
447		            resources/samples/AccelerometerPlay "Accelerometer Play" \
448		-samplecode $(sample_dir)/ActionBarCompat \
449		            resources/samples/ActionBarCompat "Action Bar Compatibility" \
450                -samplecode $(sample_dir)/AndroidBeamDemo \
451		            resources/samples/AndroidBeamDemo "Android Beam Demo" \
452		-samplecode $(sample_dir)/ApiDemos \
453		            resources/samples/ApiDemos "API Demos" \
454		-samplecode $(sample_dir)/Support4Demos \
455		            resources/samples/Support4Demos "API 4+ Support Demos" \
456		-samplecode $(sample_dir)/Support13Demos \
457		            resources/samples/Support13Demos "API 13+ Support Demos" \
458		-samplecode $(sample_dir)/BackupRestore \
459		            resources/samples/BackupRestore "Backup and Restore" \
460		-samplecode $(sample_dir)/BluetoothChat \
461		            resources/samples/BluetoothChat "Bluetooth Chat" \
462		-samplecode $(sample_dir)/BluetoothHDP \
463		            resources/samples/BluetoothHDP "Bluetooth HDP Demo" \
464		-samplecode $(sample_dir)/BusinessCard \
465		            resources/samples/BusinessCard "Business Card" \
466		-samplecode $(sample_dir)/ContactManager \
467		            resources/samples/ContactManager "Contact Manager" \
468		-samplecode $(sample_dir)/CubeLiveWallpaper \
469		            resources/samples/CubeLiveWallpaper "Cube Live Wallpaper" \
470		-samplecode $(sample_dir)/Home \
471		            resources/samples/Home "Home" \
472		-samplecode $(sample_dir)/HoneycombGallery \
473		            resources/samples/HoneycombGallery "Honeycomb Gallery" \
474		-samplecode $(sample_dir)/JetBoy \
475		            resources/samples/JetBoy "JetBoy" \
476		-samplecode $(sample_dir)/KeyChainDemo \
477		            resources/samples/KeyChainDemo "KeyChain Demo" \
478		-samplecode $(sample_dir)/LunarLander \
479		            resources/samples/LunarLander "Lunar Lander" \
480		-samplecode $(sample_dir)/training/ads-and-ux \
481		            resources/samples/training/ads-and-ux "Mobile Advertisement Integration" \
482		-samplecode $(sample_dir)/MultiResolution \
483		            resources/samples/MultiResolution "Multiple Resolutions" \
484		-samplecode $(sample_dir)/training/multiscreen/newsreader \
485		            resources/samples/newsreader "News Reader" \
486		-samplecode $(sample_dir)/NotePad \
487		            resources/samples/NotePad "Note Pad" \
488		-samplecode $(sample_dir)/SpellChecker/SampleSpellCheckerService \
489		            resources/samples/SpellChecker/SampleSpellCheckerService "Spell Checker Service" \
490		-samplecode $(sample_dir)/SpellChecker/HelloSpellChecker \
491		            resources/samples/SpellChecker/HelloSpellChecker "Spell Checker Client" \
492		-samplecode $(sample_dir)/SampleSyncAdapter \
493		            resources/samples/SampleSyncAdapter "Sample Sync Adapter" \
494		-samplecode $(sample_dir)/RandomMusicPlayer \
495		            resources/samples/RandomMusicPlayer "Random Music Player" \
496		-samplecode $(sample_dir)/RenderScript \
497		            resources/samples/RenderScript "RenderScript" \
498		-samplecode $(sample_dir)/SearchableDictionary \
499		            resources/samples/SearchableDictionary "Searchable Dictionary v2" \
500		-samplecode $(sample_dir)/SipDemo \
501		            resources/samples/SipDemo "SIP Demo" \
502		-samplecode $(sample_dir)/Snake \
503		            resources/samples/Snake "Snake" \
504		-samplecode $(sample_dir)/SoftKeyboard \
505		            resources/samples/SoftKeyboard "Soft Keyboard" \
506		-samplecode $(sample_dir)/Spinner  \
507		            resources/samples/Spinner "Spinner" \
508		-samplecode $(sample_dir)/SpinnerTest \
509		            resources/samples/SpinnerTest "SpinnerTest" \
510		-samplecode $(sample_dir)/StackWidget \
511		            resources/samples/StackWidget "StackView Widget" \
512		-samplecode $(sample_dir)/TicTacToeLib  \
513		            resources/samples/TicTacToeLib "TicTacToeLib" \
514		-samplecode $(sample_dir)/TicTacToeMain \
515		            resources/samples/TicTacToeMain "TicTacToeMain" \
516		-samplecode $(sample_dir)/ToyVpn \
517		            resources/samples/ToyVpn "Toy VPN Client" \
518		-samplecode $(sample_dir)/USB \
519		            resources/samples/USB "USB" \
520		-samplecode $(sample_dir)/WeatherListWidget \
521		            resources/samples/WeatherListWidget "Weather List Widget" \
522		-samplecode $(sample_dir)/WiFiDirectDemo \
523                            resources/samples/WiFiDirectDemo "Wi-Fi Direct Demo" \
524		-samplecode $(sample_dir)/Wiktionary \
525		            resources/samples/Wiktionary "Wiktionary" \
526		-samplecode $(sample_dir)/WiktionarySimple \
527		            resources/samples/WiktionarySimple "Wiktionary (Simplified)" \
528		-samplecode $(sample_dir)/VoiceRecognitionService \
529		            resources/samples/VoiceRecognitionService "Voice Recognition Service" \
530		-samplecode $(sample_dir)/VoicemailProviderDemo \
531		            resources/samples/VoicemailProviderDemo "Voicemail Provider Demo" \
532		-samplecode $(sample_dir)/XmlAdapters \
533		            resources/samples/XmlAdapters "XML Adapters" \
534		-samplecode $(sample_dir)/TtsEngine \
535		            resources/samples/TtsEngine "Text To Speech Engine" \
536		-samplecode $(sample_dir)/training/device-management-policy \
537		            resources/samples/training/device-management-policy "Device Management Policy"
538
539
540## SDK version identifiers used in the published docs
541  # major[.minor] version for current SDK. (full releases only)
542framework_docs_SDK_VERSION:=4.1
543  # release version (ie "Release x")  (full releases only)
544framework_docs_SDK_REL_ID:=1
545
546framework_docs_LOCAL_DROIDDOC_OPTIONS += \
547		-hdf sdk.version $(framework_docs_SDK_VERSION) \
548		-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
549		-hdf sdk.preview 0 \
550
551# ====  the api stubs and current.xml ===========================
552include $(CLEAR_VARS)
553
554LOCAL_SRC_FILES:=$(framework_docs_LOCAL_API_CHECK_SRC_FILES)
555LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
556LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
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:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
561LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
562
563LOCAL_MODULE := api-stubs
564
565LOCAL_DROIDDOC_OPTIONS:=\
566		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
567		-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_stubs_current_intermediates/src \
568		-api $(INTERNAL_PLATFORM_API_FILE) \
569		-nodocs
570
571LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
572
573LOCAL_UNINSTALLABLE_MODULE := true
574
575include $(BUILD_DROIDDOC)
576
577# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
578$(full_target): $(framework_built) $(gen)
579$(INTERNAL_PLATFORM_API_FILE): $(full_target)
580$(call dist-for-goals,sdk,$(INTERNAL_PLATFORM_API_FILE))
581
582# ====  check javadoc comments but don't generate docs ========
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)
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:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
592LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
593
594LOCAL_MODULE := doc-comment-check
595
596LOCAL_DROIDDOC_OPTIONS:=\
597		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
598		-parsecomments
599
600LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
601
602LOCAL_UNINSTALLABLE_MODULE := true
603
604include $(BUILD_DROIDDOC)
605
606# $(gen), i.e. framework.aidl, is also needed while building against the current stub.
607$(full_target): $(framework_built) $(gen)
608
609# Run this for checkbuild
610.PHONY: checkbuild
611checkbuild: doc-comment-check-docs
612
613# ====  static html in the pdk ==================================
614include $(CLEAR_VARS)
615
616LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
617LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
618LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
619LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
620LOCAL_DROIDDOC_HTML_DIR:=../../vendor/pdk/data/google/docs
621LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
622LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
623
624LOCAL_MODULE := offline-pdk
625
626LOCAL_DROIDDOC_OPTIONS:=\
627		-hdf android.whichdoc offline \
628		-hdf android.whichmodule $(LOCAL_MODULE)
629
630LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-pdk
631
632include $(BUILD_DROIDDOC)
633
634static_doc_index_redirect := $(out_dir)/index.html
635$(static_doc_index_redirect): \
636	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
637	$(hide) mkdir -p $(dir $@)
638	$(hide) $(ACP) $< $@
639
640$(full_target): $(static_doc_index_redirect)
641$(full_target): $(framework_built)
642
643# ====  static html in the sdk ==================================
644include $(CLEAR_VARS)
645
646LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
647LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
648LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
649LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
650LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
651LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
652LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
653LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
654
655LOCAL_MODULE := offline-sdk
656
657LOCAL_DROIDDOC_OPTIONS:=\
658		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
659                $(web_docs_sample_code_flags) \
660                -offlinemode \
661		-title "Android SDK" \
662		-proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
663		-todo $(OUT_DOCS)/$(LOCAL_MODULE)-docs-todo.html \
664		-sdkvalues $(OUT_DOCS) \
665		-hdf android.whichdoc offline
666
667
668LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
669
670include $(BUILD_DROIDDOC)
671
672static_doc_index_redirect := $(out_dir)/index.html
673$(static_doc_index_redirect): \
674	$(LOCAL_PATH)/docs/docs-documentation-redirect.html | $(ACP)
675	$(hide) mkdir -p $(dir $@)
676	$(hide) $(ACP) $< $@
677
678$(full_target): $(static_doc_index_redirect)
679$(full_target): $(framework_built)
680
681# ==== docs for the web (on the google app engine server) =======================
682include $(CLEAR_VARS)
683
684LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
685LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
686LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES)
687LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES)
688LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
689LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
690LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
691LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
692LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
693
694LOCAL_MODULE := online-sdk
695
696LOCAL_DROIDDOC_OPTIONS:= \
697		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
698		$(web_docs_sample_code_flags) \
699		-toroot / \
700		-hdf android.whichdoc online \
701		-hdf template.showLanguageMenu true
702
703LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
704
705include $(BUILD_DROIDDOC)
706
707# explicitly specify that online-sdk depends on framework-res and any generated docs
708$(full_target): framework-res-package-target
709
710# ==== docs that have all of the stuff that's @hidden =======================
711include $(CLEAR_VARS)
712
713LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES)
714LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES)
715LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) framework
716LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS)
717LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH)
718LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR)
719LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR)
720LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES)
721
722LOCAL_MODULE := hidden
723LOCAL_DROIDDOC_OPTIONS:=\
724		$(framework_docs_LOCAL_DROIDDOC_OPTIONS) \
725		-title "Android SDK - Including hidden APIs."
726#		-hidden
727
728LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
729
730include $(BUILD_DROIDDOC)
731
732# Build ext.jar
733# ============================================================
734
735# NOTICE notes for non-obvious sections
736# apache-http - covered by the Apache Commons section.
737
738
739ext_dirs := \
740	../../external/nist-sip/java \
741	../../external/apache-http/src \
742	../../external/tagsoup/src \
743	../../external/libphonenumber/java/src
744
745ext_src_files := $(call all-java-files-under,$(ext_dirs))
746
747ext_res_dirs := \
748	../../external/libphonenumber/java/src
749
750# ====  the library  =========================================
751include $(CLEAR_VARS)
752
753LOCAL_SRC_FILES := $(ext_src_files)
754
755LOCAL_NO_STANDARD_LIBRARIES := true
756LOCAL_JAVA_LIBRARIES := core
757LOCAL_JAVA_RESOURCE_DIRS := $(ext_res_dirs)
758LOCAL_MODULE_TAGS := optional
759LOCAL_MODULE := ext
760
761LOCAL_DX_FLAGS := --core-library
762
763include $(BUILD_JAVA_LIBRARY)
764
765
766# Include subdirectory makefiles
767# ============================================================
768
769# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
770# team really wants is to build the stuff defined by this makefile.
771ifeq (,$(ONE_SHOT_MAKEFILE))
772include $(call first-makefiles-under,$(LOCAL_PATH))
773endif
774