blob: eda1e33f65cb4c97b1dd95449b1f75ca3b4c733a [file] [log] [blame]
Carl Shapiro7b216702011-06-17 15:09:26 -07001#
2# Copyright (C) 2011 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#
16
17LOCAL_PATH := $(call my-dir)
Carl Shapiro7b216702011-06-17 15:09:26 -070018
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070019# These can be overridden via the environment or by editing to
20# enable/disable certain build configuration.
21ART_BUILD_TARGET_NDEBUG ?= true
22ART_BUILD_TARGET_DEBUG ?= true
Brian Carlstrom8ce86472011-12-15 13:50:38 -080023ART_BUILD_HOST_NDEBUG ?= true
24ART_BUILD_HOST_DEBUG ?= true
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070025
Carl Shapiro0e6d1972011-07-06 19:17:39 -070026build_path := $(LOCAL_PATH)/build
Brian Carlstromcdc8de42011-07-19 14:23:17 -070027include $(build_path)/Android.common.mk
28
Carl Shapiro0e6d1972011-07-06 19:17:39 -070029include $(build_path)/Android.libart.mk
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070030include $(build_path)/Android.executable.mk
Carl Shapiro7b216702011-06-17 15:09:26 -070031
Brian Carlstrom16192862011-09-12 17:50:06 -070032include $(build_path)/Android.oat.mk
33
Brian Carlstrom07d579f2011-07-27 13:31:51 -070034include $(build_path)/Android.libarttest.mk
Brian Carlstrombbf1e412011-09-18 14:14:51 -070035include $(build_path)/Android.gtest.mk
36include $(build_path)/Android.oattest.mk
Brian Carlstrom934486c2011-07-12 23:42:50 -070037
38# "m build-art" for quick minimal build
39.PHONY: build-art
40build-art: \
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070041 $(ART_TARGET_EXECUTABLES) \
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070042 $(ART_TARGET_TEST_EXECUTABLES) \
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070043 $(ART_HOST_EXECUTABLES) \
Carl Shapiro47940d62011-08-13 22:21:30 -070044 $(ART_HOST_TEST_EXECUTABLES)
Brian Carlstrom934486c2011-07-12 23:42:50 -070045
Brian Carlstrom4a96b602011-07-26 16:40:23 -070046# "mm test-art" to build and run all tests on host and device
47.PHONY: test-art
48test-art: test-art-host test-art-target
Brian Carlstrom395520e2011-09-25 19:35:00 -070049 @echo test-art PASSED
Brian Carlstrom4a96b602011-07-26 16:40:23 -070050
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070051.PHONY: test-art-gtest
52test-art-gtest: test-art-host test-art-target-gtest
53 @echo test-art-gtest PASSED
54
Elliott Hughes2cae5a22011-08-14 14:27:25 -070055define run-host-tests-with
Elliott Hughesb465ab02011-08-24 11:21:21 -070056 $(foreach file,$(sort $(ART_HOST_TEST_EXECUTABLES)),$(1) $(file) &&) true
Elliott Hughes2cae5a22011-08-14 14:27:25 -070057endef
58
Elliott Hughes6cc332e2012-01-20 22:59:20 -080059ART_HOST_DEPENDENCIES := $(ART_HOST_EXECUTABLES) $(HOST_OUT_JAVA_LIBRARIES)/core-hostdex.jar
60ifeq ($(HOST_OS),linux)
61 ART_HOST_DEPENDENCIES += $(HOST_OUT_SHARED_LIBRARIES)/libjavacore.so
62else
63 ART_HOST_DEPENDENCIES += $(HOST_OUT_SHARED_LIBRARIES)/libjavacore.dylib
64endif
65
66ART_TARGET_DEPENDENCIES := $(ART_TARGET_EXECUTABLES) $(TARGET_OUT_JAVA_LIBRARIES)/core.jar $(TARGET_OUT_SHARED_LIBRARIES)/libjavacore.so
Brian Carlstrom0796af02011-10-12 14:31:45 -070067
Brian Carlstrom32b4b2a2012-01-31 16:21:40 -080068ART_HOST_TEST_DEPENDENCIES := $(ART_HOST_DEPENDENCIES) $(ART_HOST_TEST_EXECUTABLES) $(ART_TEST_DEX_FILES) $(ART_TEST_OAT_FILES)
69ART_TARGET_TEST_DEPENDENCIES := $(ART_TARGET_DEPENDENCIES) $(ART_TARGET_TEST_EXECUTABLES) $(ART_TEST_DEX_FILES) $(ART_TEST_OAT_FILES)
Brian Carlstrom9f30b382011-08-28 22:41:38 -070070
Brian Carlstrombc2f3e32011-09-22 17:16:54 -070071########################################################################
72# host test targets
73
Brian Carlstrom934486c2011-07-12 23:42:50 -070074# "mm test-art-host" to build and run all host tests
75.PHONY: test-art-host
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -070076test-art-host: $(ART_HOST_TEST_DEPENDENCIES) $(ART_HOST_TEST_TARGETS)
Brian Carlstrom395520e2011-09-25 19:35:00 -070077 @echo test-art-host PASSED
Brian Carlstrom59848da2011-07-23 20:35:19 -070078
Elliott Hughes5511f212011-08-12 18:07:45 -070079# "mm valgrind-art-host" to build and run all host tests under valgrind.
80.PHONY: valgrind-art-host
Brian Carlstrom9f30b382011-08-28 22:41:38 -070081valgrind-art-host: $(ART_HOST_TEST_DEPENDENCIES)
Elliott Hughes4d6850c2012-01-18 15:55:06 -080082 $(call run-host-tests-with,valgrind --leak-check=full)
Brian Carlstrom395520e2011-09-25 19:35:00 -070083 @echo valgrind-art-host PASSED
Elliott Hughes2cae5a22011-08-14 14:27:25 -070084
85# "mm tsan-art-host" to build and run all host tests under tsan.
86.PHONY: tsan-art-host
Brian Carlstrom9f30b382011-08-28 22:41:38 -070087tsan-art-host: $(ART_HOST_TEST_DEPENDENCIES)
Elliott Hughes2cae5a22011-08-14 14:27:25 -070088 $(call run-host-tests-with,"tsan")
Brian Carlstrom395520e2011-09-25 19:35:00 -070089 @echo tsan-art-host PASSED
Elliott Hughes5511f212011-08-12 18:07:45 -070090
Brian Carlstrombc2f3e32011-09-22 17:16:54 -070091########################################################################
92# target test targets
93
94# "mm test-art-target" to build and run all target tests
Brian Carlstrom4a96b602011-07-26 16:40:23 -070095.PHONY: test-art-target
Brian Carlstrome24fa612011-09-29 00:53:55 -070096test-art-target: test-art-target-gtest test-art-target-oat test-art-target-run-test
Brian Carlstrom395520e2011-09-25 19:35:00 -070097 @echo test-art-target PASSED
Brian Carlstrom86927212011-09-15 11:31:11 -070098
99.PHONY: test-art-target-sync
Brian Carlstromb9cc1ca2012-01-27 00:57:42 -0800100test-art-target-sync: $(ART_TARGET_TEST_DEPENDENCIES) $(ART_TEST_OUT)/libarttest.so
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700101 adb remount
102 adb sync
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700103 adb shell mkdir -p $(ART_TEST_DIR)
Brian Carlstrom86927212011-09-15 11:31:11 -0700104
105.PHONY: test-art-target-gtest
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700106test-art-target-gtest: $(ART_TARGET_TEST_TARGETS)
Brian Carlstrom86927212011-09-15 11:31:11 -0700107
108.PHONY: test-art-target-oat
Brian Carlstrombbf1e412011-09-18 14:14:51 -0700109test-art-target-oat: $(ART_TEST_OAT_TARGETS)
Brian Carlstrom395520e2011-09-25 19:35:00 -0700110 @echo test-art-target-oat PASSED
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700111
Brian Carlstrome24fa612011-09-29 00:53:55 -0700112.PHONY: test-art-target-run-test
113test-art-target-run-test: test-art-target-run-test-002
114 @echo test-art-target-run-test PASSED
115
116.PHONY: test-art-target-run-test-002
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700117test-art-target-run-test-002: test-art-target-sync
Brian Carlstrome24fa612011-09-29 00:53:55 -0700118 art/test/run-test 002
119 @echo test-art-target-run-test-002 PASSED
120
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700121########################################################################
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800122# oat test targets
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700123
Brian Carlstroma9f19782011-10-13 00:14:47 -0700124# $(1): jar or apk name
125define art-cache-oat
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800126 $(ART_CACHE_OUT)/$(subst /,@,$(1).oat)
Brian Carlstroma9f19782011-10-13 00:14:47 -0700127endef
128
129ART_CACHE_OATS :=
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700130# $(1): name
Brian Carlstroma9f19782011-10-13 00:14:47 -0700131define build-art-cache-oat
132 $(call build-art-oat,$(PRODUCT_OUT)/$(1),$(call art-cache-oat,$(1)),$(TARGET_BOOT_IMG))
133 ART_CACHE_OATS += $(call art-cache-oat,$(1))
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700134endef
135
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800136
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800137########################################################################
138# oat-target-sync
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700139
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800140ifeq ($(TARGET_PRODUCT),mysid)
141
142$(eval $(call build-art-cache-oat,system/app/ApplicationsProvider.apk))
143$(eval $(call build-art-cache-oat,system/app/BackupRestoreConfirmation.apk))
144$(eval $(call build-art-cache-oat,system/app/BIP.apk))
145$(eval $(call build-art-cache-oat,system/app/Bluetooth.apk))
146$(eval $(call build-art-cache-oat,system/app/BooksTablet.apk))
147$(eval $(call build-art-cache-oat,system/app/BrowserGoogle.apk))
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800148$(eval $(call build-art-cache-oat,system/app/Calculator.apk))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800149$(eval $(call build-art-cache-oat,system/app/CalendarGoogle.apk))
150$(eval $(call build-art-cache-oat,system/app/CalendarProvider.apk))
151$(eval $(call build-art-cache-oat,system/app/CameraGoogle.apk))
152$(eval $(call build-art-cache-oat,system/app/CertInstaller.apk))
153$(eval $(call build-art-cache-oat,system/app/ChromeBookmarksSyncAdapter.apk))
154$(eval $(call build-art-cache-oat,system/app/Contacts.apk))
155$(eval $(call build-art-cache-oat,system/app/ContactsProvider.apk))
156$(eval $(call build-art-cache-oat,system/app/DefaultContainerService.apk))
157$(eval $(call build-art-cache-oat,system/app/DeskClockGoogle.apk))
158$(eval $(call build-art-cache-oat,system/app/Development.apk))
159$(eval $(call build-art-cache-oat,system/app/DownloadProvider.apk))
160$(eval $(call build-art-cache-oat,system/app/DownloadProviderUi.apk))
161$(eval $(call build-art-cache-oat,system/app/DrmProvider.apk))
162$(eval $(call build-art-cache-oat,system/app/EmailGoogle.apk))
163$(eval $(call build-art-cache-oat,system/app/ExchangeGoogle.apk))
164$(eval $(call build-art-cache-oat,system/app/GalleryGoogle.apk))
165$(eval $(call build-art-cache-oat,system/app/GenieWidget.apk))
166$(eval $(call build-art-cache-oat,system/app/Gmail.apk))
167$(eval $(call build-art-cache-oat,system/app/GoogleBackupTransport.apk))
168$(eval $(call build-art-cache-oat,system/app/GoogleContactsSyncAdapter.apk))
169$(eval $(call build-art-cache-oat,system/app/GoogleEarth.apk))
170$(eval $(call build-art-cache-oat,system/app/GoogleFeedback.apk))
171$(eval $(call build-art-cache-oat,system/app/GoogleLoginService.apk))
172$(eval $(call build-art-cache-oat,system/app/GooglePackageVerifier.apk))
173$(eval $(call build-art-cache-oat,system/app/GooglePackageVerifierUpdater.apk))
174$(eval $(call build-art-cache-oat,system/app/GooglePartnerSetup.apk))
175$(eval $(call build-art-cache-oat,system/app/GoogleQuickSearchBox.apk))
176$(eval $(call build-art-cache-oat,system/app/GoogleServicesFramework.apk))
177$(eval $(call build-art-cache-oat,system/app/GoogleTTS.apk))
178$(eval $(call build-art-cache-oat,system/app/HTMLViewer.apk))
179$(eval $(call build-art-cache-oat,system/app/IMSFramework.apk))
180$(eval $(call build-art-cache-oat,system/app/HoloSpiralWallpaper.apk))
181$(eval $(call build-art-cache-oat,system/app/KeyChain.apk))
182$(eval $(call build-art-cache-oat,system/app/LatinImeDictionaryPack.apk))
183$(eval $(call build-art-cache-oat,system/app/LatinImeGoogle.apk))
184$(eval $(call build-art-cache-oat,system/app/Launcher2.apk))
185$(eval $(call build-art-cache-oat,system/app/LiveWallpapers.apk))
186$(eval $(call build-art-cache-oat,system/app/LiveWallpapersPicker.apk))
187$(eval $(call build-art-cache-oat,system/app/Maps.apk))
188$(eval $(call build-art-cache-oat,system/app/MarketUpdater.apk))
189$(eval $(call build-art-cache-oat,system/app/MediaProvider.apk))
190$(eval $(call build-art-cache-oat,system/app/MediaUploader.apk))
191$(eval $(call build-art-cache-oat,system/app/Microbes.apk))
192$(eval $(call build-art-cache-oat,system/app/Mms.apk))
193$(eval $(call build-art-cache-oat,system/app/Music2.apk))
194$(eval $(call build-art-cache-oat,system/app/MusicFX.apk))
195$(eval $(call build-art-cache-oat,system/app/MyVerizon.apk))
196$(eval $(call build-art-cache-oat,system/app/NetSpeed.apk))
197$(eval $(call build-art-cache-oat,system/app/NetworkLocation.apk))
198$(eval $(call build-art-cache-oat,system/app/Nfc.apk))
199$(eval $(call build-art-cache-oat,system/app/OneTimeInitializer.apk))
200$(eval $(call build-art-cache-oat,system/app/PackageInstaller.apk))
201$(eval $(call build-art-cache-oat,system/app/Phone.apk))
202$(eval $(call build-art-cache-oat,system/app/Phonesky.apk))
203$(eval $(call build-art-cache-oat,system/app/PlusOne.apk))
204$(eval $(call build-art-cache-oat,system/app/RTN.apk))
205$(eval $(call build-art-cache-oat,system/app/SDM.apk))
206$(eval $(call build-art-cache-oat,system/app/Settings.apk))
207$(eval $(call build-art-cache-oat,system/app/SettingsProvider.apk))
208$(eval $(call build-art-cache-oat,system/app/SetupWizard.apk))
209$(eval $(call build-art-cache-oat,system/app/SharedStorageBackup.apk))
210$(eval $(call build-art-cache-oat,system/app/SoundRecorder.apk))
211$(eval $(call build-art-cache-oat,system/app/SpeechRecorder.apk))
212$(eval $(call build-art-cache-oat,system/app/SPG.apk))
213$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenu.apk))
214$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenuSystem.apk))
215$(eval $(call build-art-cache-oat,system/app/Stk.apk))
216$(eval $(call build-art-cache-oat,system/app/Street.apk))
217$(eval $(call build-art-cache-oat,system/app/SyncMLSvc.apk))
218$(eval $(call build-art-cache-oat,system/app/SystemUI.apk))
219$(eval $(call build-art-cache-oat,system/app/TagGoogle.apk))
220$(eval $(call build-art-cache-oat,system/app/Talk.apk))
221$(eval $(call build-art-cache-oat,system/app/TelephonyProvider.apk))
222$(eval $(call build-art-cache-oat,system/app/Thinkfree.apk))
223$(eval $(call build-art-cache-oat,system/app/UserDictionaryProvider.apk))
224$(eval $(call build-art-cache-oat,system/app/VerizonSSO.apk))
225$(eval $(call build-art-cache-oat,system/app/VideoEditorGoogle.apk))
226$(eval $(call build-art-cache-oat,system/app/Videos.apk))
227$(eval $(call build-art-cache-oat,system/app/VisualizationWallpapers.apk))
228$(eval $(call build-art-cache-oat,system/app/VoiceDialer.apk))
229$(eval $(call build-art-cache-oat,system/app/VoiceSearch.apk))
230$(eval $(call build-art-cache-oat,system/app/VpnDialogs.apk))
231$(eval $(call build-art-cache-oat,system/app/VZWAPNLib.apk))
232$(eval $(call build-art-cache-oat,system/app/VZWAPNService.apk))
233$(eval $(call build-art-cache-oat,system/app/VZWBackupAssistant.apk))
234$(eval $(call build-art-cache-oat,system/app/YouTube.apk))
235$(eval $(call build-art-cache-oat,system/app/talkback.apk))
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800236$(eval $(call build-art-cache-oat,system/framework/am.jar))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800237$(eval $(call build-art-cache-oat,system/framework/android.test.runner.jar))
238$(eval $(call build-art-cache-oat,system/framework/bmgr.jar))
239$(eval $(call build-art-cache-oat,system/framework/bu.jar))
240$(eval $(call build-art-cache-oat,system/framework/com.android.future.usb.accessory.jar))
241$(eval $(call build-art-cache-oat,system/framework/com.android.location.provider.jar))
242$(eval $(call build-art-cache-oat,system/framework/com.android.nfc_extras.jar))
243$(eval $(call build-art-cache-oat,system/framework/com.google.android.maps.jar))
244$(eval $(call build-art-cache-oat,system/framework/com.google.android.media.effects.jar))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800245$(eval $(call build-art-cache-oat,system/framework/ime.jar))
246$(eval $(call build-art-cache-oat,system/framework/input.jar))
247$(eval $(call build-art-cache-oat,system/framework/javax.obex.jar))
248$(eval $(call build-art-cache-oat,system/framework/monkey.jar))
249$(eval $(call build-art-cache-oat,system/framework/pm.jar))
250$(eval $(call build-art-cache-oat,system/framework/send_bug.jar))
251$(eval $(call build-art-cache-oat,system/framework/svc.jar))
252
253else
254
Shih-wei Liaoc74a6972011-12-22 20:16:42 -0800255ifeq ($(TARGET_PRODUCT),$(filter $(TARGET_PRODUCT),soju sojus))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800256
Ian Rogersf8a199c2011-11-03 17:16:02 -0700257$(eval $(call build-art-cache-oat,system/app/ApplicationsProvider.apk))
258$(eval $(call build-art-cache-oat,system/app/BackupRestoreConfirmation.apk))
259$(eval $(call build-art-cache-oat,system/app/Bluetooth.apk))
260$(eval $(call build-art-cache-oat,system/app/BooksTablet.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800261$(eval $(call build-art-cache-oat,system/app/BrowserGoogle.apk))
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800262$(eval $(call build-art-cache-oat,system/app/Calculator.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700263$(eval $(call build-art-cache-oat,system/app/CalendarGoogle.apk))
264$(eval $(call build-art-cache-oat,system/app/CalendarProvider.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800265$(eval $(call build-art-cache-oat,system/app/CameraGoogle.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700266$(eval $(call build-art-cache-oat,system/app/CarHomeGoogle.apk))
267$(eval $(call build-art-cache-oat,system/app/CertInstaller.apk))
268$(eval $(call build-art-cache-oat,system/app/ChromeBookmarksSyncAdapter.apk))
269$(eval $(call build-art-cache-oat,system/app/Contacts.apk))
270$(eval $(call build-art-cache-oat,system/app/ContactsProvider.apk))
271$(eval $(call build-art-cache-oat,system/app/DefaultContainerService.apk))
272$(eval $(call build-art-cache-oat,system/app/DeskClockGoogle.apk))
273$(eval $(call build-art-cache-oat,system/app/Development.apk))
274$(eval $(call build-art-cache-oat,system/app/DownloadProvider.apk))
275$(eval $(call build-art-cache-oat,system/app/DownloadProviderUi.apk))
276$(eval $(call build-art-cache-oat,system/app/DrmProvider.apk))
277$(eval $(call build-art-cache-oat,system/app/EmailGoogle.apk))
278$(eval $(call build-art-cache-oat,system/app/ExchangeGoogle.apk))
279$(eval $(call build-art-cache-oat,system/app/GalleryGoogle.apk))
280$(eval $(call build-art-cache-oat,system/app/GenieWidget.apk))
281$(eval $(call build-art-cache-oat,system/app/Gmail.apk))
282$(eval $(call build-art-cache-oat,system/app/GoogleBackupTransport.apk))
283$(eval $(call build-art-cache-oat,system/app/GoogleContactsSyncAdapter.apk))
284$(eval $(call build-art-cache-oat,system/app/GoogleEarth.apk))
285$(eval $(call build-art-cache-oat,system/app/GoogleFeedback.apk))
286$(eval $(call build-art-cache-oat,system/app/GoogleLoginService.apk))
287$(eval $(call build-art-cache-oat,system/app/GooglePackageVerifier.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800288$(eval $(call build-art-cache-oat,system/app/GooglePackageVerifierUpdater.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700289$(eval $(call build-art-cache-oat,system/app/GooglePartnerSetup.apk))
290$(eval $(call build-art-cache-oat,system/app/GoogleQuickSearchBox.apk))
291$(eval $(call build-art-cache-oat,system/app/GoogleServicesFramework.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800292$(eval $(call build-art-cache-oat,system/app/GoogleTTS.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700293$(eval $(call build-art-cache-oat,system/app/HTMLViewer.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800294$(eval $(call build-art-cache-oat,system/app/HoloSpiralWallpaper.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700295$(eval $(call build-art-cache-oat,system/app/KeyChain.apk))
296$(eval $(call build-art-cache-oat,system/app/LatinImeDictionaryPack.apk))
297$(eval $(call build-art-cache-oat,system/app/LatinImeGoogle.apk))
298$(eval $(call build-art-cache-oat,system/app/Launcher2.apk))
299$(eval $(call build-art-cache-oat,system/app/LiveWallpapers.apk))
300$(eval $(call build-art-cache-oat,system/app/LiveWallpapersPicker.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700301$(eval $(call build-art-cache-oat,system/app/Maps.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800302$(eval $(call build-art-cache-oat,system/app/MarketUpdater.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700303$(eval $(call build-art-cache-oat,system/app/MediaProvider.apk))
304$(eval $(call build-art-cache-oat,system/app/MediaUploader.apk))
305$(eval $(call build-art-cache-oat,system/app/Microbes.apk))
306$(eval $(call build-art-cache-oat,system/app/Mms.apk))
307$(eval $(call build-art-cache-oat,system/app/Music2.apk))
308$(eval $(call build-art-cache-oat,system/app/MusicFX.apk))
309$(eval $(call build-art-cache-oat,system/app/NetSpeed.apk))
310$(eval $(call build-art-cache-oat,system/app/NetworkLocation.apk))
Brian Carlstromae826982011-11-09 01:33:42 -0800311$(eval $(call build-art-cache-oat,system/app/Nfc.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700312$(eval $(call build-art-cache-oat,system/app/OneTimeInitializer.apk))
313$(eval $(call build-art-cache-oat,system/app/PackageInstaller.apk))
314$(eval $(call build-art-cache-oat,system/app/Phone.apk))
315$(eval $(call build-art-cache-oat,system/app/Phonesky.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800316$(eval $(call build-art-cache-oat,system/app/PlusOne.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700317$(eval $(call build-art-cache-oat,system/app/Settings.apk))
318$(eval $(call build-art-cache-oat,system/app/SettingsProvider.apk))
319$(eval $(call build-art-cache-oat,system/app/SetupWizard.apk))
Brian Carlstrom41df0652011-11-10 10:35:05 -0800320$(eval $(call build-art-cache-oat,system/app/SharedStorageBackup.apk))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700321$(eval $(call build-art-cache-oat,system/app/SoundRecorder.apk))
322$(eval $(call build-art-cache-oat,system/app/SpeechRecorder.apk))
323$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenu.apk))
324$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenuSystem.apk))
325$(eval $(call build-art-cache-oat,system/app/Street.apk))
326$(eval $(call build-art-cache-oat,system/app/SystemUI.apk))
327$(eval $(call build-art-cache-oat,system/app/TagGoogle.apk))
328$(eval $(call build-art-cache-oat,system/app/Talk.apk))
329$(eval $(call build-art-cache-oat,system/app/TelephonyProvider.apk))
330$(eval $(call build-art-cache-oat,system/app/Thinkfree.apk))
331$(eval $(call build-art-cache-oat,system/app/UserDictionaryProvider.apk))
332$(eval $(call build-art-cache-oat,system/app/VideoEditorGoogle.apk))
333$(eval $(call build-art-cache-oat,system/app/Videos.apk))
334$(eval $(call build-art-cache-oat,system/app/VisualizationWallpapers.apk))
335$(eval $(call build-art-cache-oat,system/app/VoiceDialer.apk))
336$(eval $(call build-art-cache-oat,system/app/VoiceSearch.apk))
337$(eval $(call build-art-cache-oat,system/app/VpnDialogs.apk))
338$(eval $(call build-art-cache-oat,system/app/YouTube.apk))
339$(eval $(call build-art-cache-oat,system/app/googlevoice.apk))
340$(eval $(call build-art-cache-oat,system/app/talkback.apk))
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800341$(eval $(call build-art-cache-oat,system/framework/am.jar))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700342$(eval $(call build-art-cache-oat,system/framework/android.test.runner.jar))
343$(eval $(call build-art-cache-oat,system/framework/bmgr.jar))
344$(eval $(call build-art-cache-oat,system/framework/bu.jar))
345$(eval $(call build-art-cache-oat,system/framework/com.android.future.usb.accessory.jar))
346$(eval $(call build-art-cache-oat,system/framework/com.android.location.provider.jar))
347$(eval $(call build-art-cache-oat,system/framework/com.android.nfc_extras.jar))
348$(eval $(call build-art-cache-oat,system/framework/com.google.android.maps.jar))
349$(eval $(call build-art-cache-oat,system/framework/com.google.android.media.effects.jar))
Ian Rogersf8a199c2011-11-03 17:16:02 -0700350$(eval $(call build-art-cache-oat,system/framework/ime.jar))
351$(eval $(call build-art-cache-oat,system/framework/input.jar))
352$(eval $(call build-art-cache-oat,system/framework/javax.obex.jar))
353$(eval $(call build-art-cache-oat,system/framework/monkey.jar))
354$(eval $(call build-art-cache-oat,system/framework/pm.jar))
355$(eval $(call build-art-cache-oat,system/framework/send_bug.jar))
356$(eval $(call build-art-cache-oat,system/framework/svc.jar))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800357
358else
359
Ian Rogers1f72dce2012-01-30 20:06:41 -0800360ifeq ($(TARGET_PRODUCT),$(filter $(TARGET_PRODUCT),stingray))
361
362$(eval $(call build-art-cache-oat,system/app/AppDirectedSmsService.apk))
363$(eval $(call build-art-cache-oat,system/app/ApplicationsProvider.apk))
364$(eval $(call build-art-cache-oat,system/app/BackupRestoreConfirmation.apk))
365$(eval $(call build-art-cache-oat,system/app/Bluetooth.apk))
366$(eval $(call build-art-cache-oat,system/app/Browser.apk))
367$(eval $(call build-art-cache-oat,system/app/Calculator.apk))
368$(eval $(call build-art-cache-oat,system/app/Calendar.apk))
369$(eval $(call build-art-cache-oat,system/app/CalendarProvider.apk))
370$(eval $(call build-art-cache-oat,system/app/CertInstaller.apk))
371$(eval $(call build-art-cache-oat,system/app/ConnMO.apk))
372$(eval $(call build-art-cache-oat,system/app/Contacts.apk))
373$(eval $(call build-art-cache-oat,system/app/ContactsProvider.apk))
374$(eval $(call build-art-cache-oat,system/app/DMService.apk))
375$(eval $(call build-art-cache-oat,system/app/DefaultContainerService.apk))
376$(eval $(call build-art-cache-oat,system/app/DeskClock.apk))
377$(eval $(call build-art-cache-oat,system/app/DownloadProvider.apk))
378$(eval $(call build-art-cache-oat,system/app/DownloadProviderUi.apk))
379$(eval $(call build-art-cache-oat,system/app/DrmProvider.apk))
380$(eval $(call build-art-cache-oat,system/app/Email.apk))
381$(eval $(call build-art-cache-oat,system/app/Exchange.apk))
382$(eval $(call build-art-cache-oat,system/app/Gallery2.apk))
383$(eval $(call build-art-cache-oat,system/app/HTMLViewer.apk))
384$(eval $(call build-art-cache-oat,system/app/KeyChain.apk))
385$(eval $(call build-art-cache-oat,system/app/LatinIME.apk))
386$(eval $(call build-art-cache-oat,system/app/Launcher2.apk))
387$(eval $(call build-art-cache-oat,system/app/MediaProvider.apk))
388$(eval $(call build-art-cache-oat,system/app/MotoImsServer.apk))
389$(eval $(call build-art-cache-oat,system/app/MotoLocationProxy.apk))
390$(eval $(call build-art-cache-oat,system/app/MotoLteTelephony.apk))
391$(eval $(call build-art-cache-oat,system/app/MotoModemUtil.apk))
392$(eval $(call build-art-cache-oat,system/app/MotoSimUiHelper.apk))
393$(eval $(call build-art-cache-oat,system/app/Music.apk))
394$(eval $(call build-art-cache-oat,system/app/MusicFX.apk))
395$(eval $(call build-art-cache-oat,system/app/PackageInstaller.apk))
396$(eval $(call build-art-cache-oat,system/app/Phone.apk))
397$(eval $(call build-art-cache-oat,system/app/PicoTts.apk))
398$(eval $(call build-art-cache-oat,system/app/Provision.apk))
399$(eval $(call build-art-cache-oat,system/app/QuickSearchBox.apk))
400$(eval $(call build-art-cache-oat,system/app/Settings.apk))
401$(eval $(call build-art-cache-oat,system/app/SettingsProvider.apk))
402$(eval $(call build-art-cache-oat,system/app/SharedStorageBackup.apk))
403$(eval $(call build-art-cache-oat,system/app/SoundRecorder.apk))
404$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenu.apk))
405$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenuSystem.apk))
406$(eval $(call build-art-cache-oat,system/app/SystemUI.apk))
407$(eval $(call build-art-cache-oat,system/app/TelephonyProvider.apk))
408$(eval $(call build-art-cache-oat,system/app/UsbHelper.apk))
409$(eval $(call build-art-cache-oat,system/app/UserDictionaryProvider.apk))
410$(eval $(call build-art-cache-oat,system/app/VpnDialogs.apk))
411$(eval $(call build-art-cache-oat,system/framework/am.jar))
412$(eval $(call build-art-cache-oat,system/framework/android.test.runner.jar))
413$(eval $(call build-art-cache-oat,system/framework/bmgr.jar))
414$(eval $(call build-art-cache-oat,system/framework/bu.jar))
415$(eval $(call build-art-cache-oat,system/framework/com.android.future.usb.accessory.jar))
416$(eval $(call build-art-cache-oat,system/framework/com.android.location.provider.jar))
417$(eval $(call build-art-cache-oat,system/framework/ime.jar))
418$(eval $(call build-art-cache-oat,system/framework/input.jar))
419$(eval $(call build-art-cache-oat,system/framework/javax.obex.jar))
420$(eval $(call build-art-cache-oat,system/framework/monkey.jar))
421$(eval $(call build-art-cache-oat,system/framework/pm.jar))
422$(eval $(call build-art-cache-oat,system/framework/send_bug.jar))
423$(eval $(call build-art-cache-oat,system/framework/svc.jar))
424
425else
426
Ian Rogersbeb60e22012-01-31 10:40:40 -0800427ifeq ($(TARGET_PRODUCT),$(filter $(TARGET_PRODUCT),full_stingray))
428
429$(eval $(call build-art-cache-oat,system/app/AppDirectedSmsService.apk))
430$(eval $(call build-art-cache-oat,system/app/ApplicationsProvider.apk))
431$(eval $(call build-art-cache-oat,system/app/BackupRestoreConfirmation.apk))
432$(eval $(call build-art-cache-oat,system/app/Bluetooth.apk))
433$(eval $(call build-art-cache-oat,system/app/Browser.apk))
434$(eval $(call build-art-cache-oat,system/app/Calculator.apk))
435$(eval $(call build-art-cache-oat,system/app/Calendar.apk))
436$(eval $(call build-art-cache-oat,system/app/CalendarProvider.apk))
437$(eval $(call build-art-cache-oat,system/app/Camera.apk))
438$(eval $(call build-art-cache-oat,system/app/CertInstaller.apk))
439$(eval $(call build-art-cache-oat,system/app/ConnMO.apk))
440$(eval $(call build-art-cache-oat,system/app/Contacts.apk))
441$(eval $(call build-art-cache-oat,system/app/ContactsProvider.apk))
442$(eval $(call build-art-cache-oat,system/app/DMService.apk))
443$(eval $(call build-art-cache-oat,system/app/DefaultContainerService.apk))
444$(eval $(call build-art-cache-oat,system/app/DeskClock.apk))
445$(eval $(call build-art-cache-oat,system/app/DownloadProvider.apk))
446$(eval $(call build-art-cache-oat,system/app/DownloadProviderUi.apk))
447$(eval $(call build-art-cache-oat,system/app/DrmProvider.apk))
448$(eval $(call build-art-cache-oat,system/app/Email.apk))
449$(eval $(call build-art-cache-oat,system/app/Exchange.apk))
450$(eval $(call build-art-cache-oat,system/app/Gallery2.apk))
451$(eval $(call build-art-cache-oat,system/app/HTMLViewer.apk))
452$(eval $(call build-art-cache-oat,system/app/HoloSpiralWallpaper.apk))
453$(eval $(call build-art-cache-oat,system/app/KeyChain.apk))
454$(eval $(call build-art-cache-oat,system/app/LatinIME.apk))
455$(eval $(call build-art-cache-oat,system/app/Launcher2.apk))
456$(eval $(call build-art-cache-oat,system/app/LiveWallpapersPicker.apk))
457$(eval $(call build-art-cache-oat,system/app/MediaProvider.apk))
458$(eval $(call build-art-cache-oat,system/app/MotoImsServer.apk))
459$(eval $(call build-art-cache-oat,system/app/MotoLocationProxy.apk))
460$(eval $(call build-art-cache-oat,system/app/MotoLteTelephony.apk))
461$(eval $(call build-art-cache-oat,system/app/MotoModemUtil.apk))
462$(eval $(call build-art-cache-oat,system/app/MotoSimUiHelper.apk))
463$(eval $(call build-art-cache-oat,system/app/Music.apk))
464$(eval $(call build-art-cache-oat,system/app/MusicFX.apk))
465$(eval $(call build-art-cache-oat,system/app/OpenWnn.apk))
466$(eval $(call build-art-cache-oat,system/app/PackageInstaller.apk))
467$(eval $(call build-art-cache-oat,system/app/Phone.apk))
468$(eval $(call build-art-cache-oat,system/app/PicoTts.apk))
469$(eval $(call build-art-cache-oat,system/app/PinyinIME.apk))
470$(eval $(call build-art-cache-oat,system/app/Provision.apk))
471$(eval $(call build-art-cache-oat,system/app/QuickSearchBox.apk))
472$(eval $(call build-art-cache-oat,system/app/Settings.apk))
473$(eval $(call build-art-cache-oat,system/app/SettingsProvider.apk))
474$(eval $(call build-art-cache-oat,system/app/SharedStorageBackup.apk))
475$(eval $(call build-art-cache-oat,system/app/SoundRecorder.apk))
476$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenu.apk))
477$(eval $(call build-art-cache-oat,system/app/StingrayProgramMenuSystem.apk))
478$(eval $(call build-art-cache-oat,system/app/SystemUI.apk))
479$(eval $(call build-art-cache-oat,system/app/TelephonyProvider.apk))
480$(eval $(call build-art-cache-oat,system/app/UsbHelper.apk))
481$(eval $(call build-art-cache-oat,system/app/UserDictionaryProvider.apk))
482$(eval $(call build-art-cache-oat,system/app/VideoEditor.apk))
483$(eval $(call build-art-cache-oat,system/app/VisualizationWallpapers.apk))
484$(eval $(call build-art-cache-oat,system/app/VpnDialogs.apk))
485$(eval $(call build-art-cache-oat,system/app/WAPPushManager.apk))
486$(eval $(call build-art-cache-oat,system/framework/am.jar))
487$(eval $(call build-art-cache-oat,system/framework/android.test.runner.jar))
488$(eval $(call build-art-cache-oat,system/framework/bmgr.jar))
489$(eval $(call build-art-cache-oat,system/framework/bu.jar))
490$(eval $(call build-art-cache-oat,system/framework/com.android.future.usb.accessory.jar))
491$(eval $(call build-art-cache-oat,system/framework/com.android.location.provider.jar))
492$(eval $(call build-art-cache-oat,system/framework/ime.jar))
493$(eval $(call build-art-cache-oat,system/framework/input.jar))
494$(eval $(call build-art-cache-oat,system/framework/javax.obex.jar))
495$(eval $(call build-art-cache-oat,system/framework/monkey.jar))
496$(eval $(call build-art-cache-oat,system/framework/pm.jar))
497$(eval $(call build-art-cache-oat,system/framework/send_bug.jar))
498$(eval $(call build-art-cache-oat,system/framework/svc.jar))
499
500else
501
Elliott Hughes42298fa2011-12-13 20:49:29 -0800502$(warning do not know what jars to compile for $(TARGET_PRODUCT))
Elliott Hughes0dc36d72011-12-13 19:40:43 -0800503
504endif
505
Ian Rogersf8a199c2011-11-03 17:16:02 -0700506endif
507
Ian Rogers1f72dce2012-01-30 20:06:41 -0800508endif
509
Ian Rogersbeb60e22012-01-31 10:40:40 -0800510endif
511
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800512.PHONY: oat-target-sync
513oat-target-sync: $(ART_TARGET_DEPENDENCIES) $(TARGET_BOOT_OAT) $(ART_CACHE_OATS)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700514 adb remount
515 adb sync
516
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700517########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700518# oatdump targets
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700519
Brian Carlstrom395520e2011-09-25 19:35:00 -0700520.PHONY: dump-oat
Brian Carlstrom03a20ba2011-10-13 10:24:13 -0700521dump-oat: dump-oat-core dump-oat-boot dump-oat-Calculator
Brian Carlstrom395520e2011-09-25 19:35:00 -0700522
Brian Carlstrome10b6972011-09-26 13:49:03 -0700523.PHONY: dump-oat-core
524dump-oat-core: $(TARGET_CORE_OAT) $(OATDUMP)
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700525 $(OATDUMP) --image=$(TARGET_CORE_IMG) --host-prefix=$(PRODUCT_OUT) --output=/tmp/core.oatdump.txt
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700526 @echo Output in /tmp/core.oatdump.txt
527
Brian Carlstrome10b6972011-09-26 13:49:03 -0700528.PHONY: dump-oat-boot
529dump-oat-boot: $(TARGET_BOOT_OAT) $(OATDUMP)
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700530 $(OATDUMP) --image=$(TARGET_BOOT_IMG) --host-prefix=$(PRODUCT_OUT) --output=/tmp/boot.oatdump.txt
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700531 @echo Output in /tmp/boot.oatdump.txt
Brian Carlstrom78128a62011-09-15 17:21:19 -0700532
Brian Carlstrome10b6972011-09-26 13:49:03 -0700533.PHONY: dump-oat-Calculator
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800534dump-oat-Calculator: $(call art-cache-oat,system/app/Calculator.apk) $(TARGET_BOOT_OAT) $(OATDUMP)
535 $(OATDUMP) --oat-file=$< --boot-image=$(TARGET_BOOT_IMG) --host-prefix=$(PRODUCT_OUT) --output=/tmp/Calculator.oatdump.txt
Brian Carlstrome10b6972011-09-26 13:49:03 -0700536 @echo Output in /tmp/Calculator.oatdump.txt
537
538
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700539########################################################################
Brian Carlstromfab62932011-10-27 21:47:49 -0700540# clean-oat target
541#
542
543.PHONY: clean-oat
544clean-oat:
545 rm -f $(ART_TEST_OUT)/*.oat
Elliott Hughes55124a52011-12-08 15:52:52 -0800546 rm -f $(ART_TEST_OUT)/*.art
Brian Carlstromfab62932011-10-27 21:47:49 -0700547 rm -f $(ART_CACHE_OUT)/*.oat
Elliott Hughes55124a52011-12-08 15:52:52 -0800548 rm -f $(ART_CACHE_OUT)/*.art
Brian Carlstromfab62932011-10-27 21:47:49 -0700549 adb shell rm $(ART_TEST_DIR)/*.oat
Elliott Hughes55124a52011-12-08 15:52:52 -0800550 adb shell rm $(ART_TEST_DIR)/*.art
Brian Carlstromfab62932011-10-27 21:47:49 -0700551 adb shell rm $(ART_CACHE_DIR)/*.oat
Elliott Hughes55124a52011-12-08 15:52:52 -0800552 adb shell rm $(ART_CACHE_DIR)/*.art
Brian Carlstromfab62932011-10-27 21:47:49 -0700553
554########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700555# cpplint target
556
Brian Carlstrom59848da2011-07-23 20:35:19 -0700557# "mm cpplint-art" to style check art source files
558.PHONY: cpplint-art
559cpplint-art:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -0700560 ./art/tools/cpplint.py \
561 --filter=-whitespace/comments,-whitespace/line_length,-build/include,-build/header_guard,-readability/streams,-readability/todo,-runtime/references \
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700562 $(ANDROID_BUILD_TOP)/art/src/*.h $(ANDROID_BUILD_TOP)/art/src/*.cc
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700563
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700564########################################################################
565
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700566include $(call all-makefiles-under,$(LOCAL_PATH))