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