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