blob: 2c552e6b8e4e59e3981ab7b918dababa81791a34 [file] [log] [blame]
Ian Rogersafd9acc2014-06-17 08:21:54 -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
Igor Murashkin37743352014-11-13 14:38:00 -080017ifndef ART_ANDROID_COMMON_BUILD_MK
18ART_ANDROID_COMMON_BUILD_MK = true
Ian Rogersafd9acc2014-06-17 08:21:54 -070019
20include art/build/Android.common.mk
Igor Murashkin37743352014-11-13 14:38:00 -080021include art/build/Android.common_utils.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070022
23# These can be overridden via the environment or by editing to
24# enable/disable certain build configuration.
25#
26# For example, to disable everything but the host debug build you use:
27#
28# (export ART_BUILD_TARGET_NDEBUG=false && export ART_BUILD_TARGET_DEBUG=false && export ART_BUILD_HOST_NDEBUG=false && ...)
29#
30# Beware that tests may use the non-debug build for performance, notable 055-enum-performance
31#
32ART_BUILD_TARGET_NDEBUG ?= true
33ART_BUILD_TARGET_DEBUG ?= true
34ART_BUILD_HOST_NDEBUG ?= true
35ART_BUILD_HOST_DEBUG ?= true
Calin Juravledc561612015-07-02 11:51:22 +010036ART_BUILD_HOST_STATIC ?= true
Ian Rogersafd9acc2014-06-17 08:21:54 -070037
Calin Juravle4895ea42015-07-02 18:21:14 +010038# Asan does not support static linkage
39ifdef SANITIZE_HOST
40 ART_BUILD_HOST_STATIC := false
41endif
42
Calin Juravle0e26f462015-07-09 15:48:03 +010043ifneq ($(HOST_OS),linux)
Calin Juravle4895ea42015-07-02 18:21:14 +010044 ART_BUILD_HOST_STATIC := false
45endif
46
Ian Rogersafd9acc2014-06-17 08:21:54 -070047ifeq ($(ART_BUILD_TARGET_NDEBUG),false)
48$(info Disabling ART_BUILD_TARGET_NDEBUG)
49endif
50ifeq ($(ART_BUILD_TARGET_DEBUG),false)
51$(info Disabling ART_BUILD_TARGET_DEBUG)
52endif
53ifeq ($(ART_BUILD_HOST_NDEBUG),false)
54$(info Disabling ART_BUILD_HOST_NDEBUG)
55endif
56ifeq ($(ART_BUILD_HOST_DEBUG),false)
57$(info Disabling ART_BUILD_HOST_DEBUG)
58endif
Calin Juravle65e069d2015-06-08 10:35:24 +010059ifeq ($(ART_BUILD_HOST_STATIC),true)
60$(info Enabling ART_BUILD_HOST_STATIC)
61endif
Ian Rogersafd9acc2014-06-17 08:21:54 -070062
Hiroshi Yamauchi093f1b42015-07-14 12:20:30 -070063ifeq ($(ART_TEST_DEBUG_GC),true)
64 ART_DEFAULT_GC_TYPE := SS
65 ART_USE_TLAB := true
66endif
67
Ian Rogersafd9acc2014-06-17 08:21:54 -070068#
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080069# Used to enable JIT
70#
71ART_JIT := false
72ifneq ($(wildcard art/JIT_ART),)
73$(info Enabling ART_JIT because of existence of art/JIT_ART)
74ART_JIT := true
75endif
76ifeq ($(WITH_ART_JIT), true)
77ART_JIT := true
78endif
79
80#
Ian Rogersafd9acc2014-06-17 08:21:54 -070081# Used to change the default GC. Valid values are CMS, SS, GSS. The default is CMS.
82#
Hiroshi Yamauchi3e781622015-02-25 12:52:34 -080083ART_DEFAULT_GC_TYPE ?= CMS
84art_default_gc_type_cflags := -DART_DEFAULT_GC_TYPE_IS_$(ART_DEFAULT_GC_TYPE)
Ian Rogersafd9acc2014-06-17 08:21:54 -070085
Andreas Gampeee0ebc82014-10-21 21:07:28 -070086ART_HOST_CFLAGS :=
87ART_TARGET_CFLAGS :=
88
Roland Levillain12bd7212015-06-04 17:50:27 +010089ART_HOST_ASFLAGS :=
90ART_TARGET_ASFLAGS :=
91
Ian Rogersafd9acc2014-06-17 08:21:54 -070092# Clang build support.
93
94# Host.
95ART_HOST_CLANG := false
96ifneq ($(WITHOUT_HOST_CLANG),true)
97 # By default, host builds use clang for better warnings.
98 ART_HOST_CLANG := true
99endif
100
Sebastien Hertzea521dc2014-06-25 18:50:01 +0200101# Clang on the target. Target builds use GCC by default.
Bernhard Rosenkraenzer88c05692014-10-04 19:02:06 +0200102ifneq ($(USE_CLANG_PLATFORM_BUILD),)
103ART_TARGET_CLANG := $(USE_CLANG_PLATFORM_BUILD)
104else
Ian Rogersd642a912014-10-02 09:41:44 -0700105ART_TARGET_CLANG := false
Bernhard Rosenkraenzer88c05692014-10-04 19:02:06 +0200106endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700107ART_TARGET_CLANG_arm :=
Sebastien Hertzea521dc2014-06-25 18:50:01 +0200108ART_TARGET_CLANG_arm64 :=
Duane Sand91ddd0d2015-05-01 11:34:51 -0700109ART_TARGET_CLANG_mips :=
110ART_TARGET_CLANG_mips64 :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700111ART_TARGET_CLANG_x86 :=
112ART_TARGET_CLANG_x86_64 :=
113
114define set-target-local-clang-vars
115 LOCAL_CLANG := $(ART_TARGET_CLANG)
116 $(foreach arch,$(ART_TARGET_SUPPORTED_ARCH),
117 ifneq ($$(ART_TARGET_CLANG_$(arch)),)
118 LOCAL_CLANG_$(arch) := $$(ART_TARGET_CLANG_$(arch))
119 endif)
120endef
121
Ian Rogersafd9acc2014-06-17 08:21:54 -0700122ART_TARGET_CLANG_CFLAGS :=
123ART_TARGET_CLANG_CFLAGS_arm :=
124ART_TARGET_CLANG_CFLAGS_arm64 :=
125ART_TARGET_CLANG_CFLAGS_mips :=
Andreas Gampe1a5c4062015-01-15 12:10:47 -0800126ART_TARGET_CLANG_CFLAGS_mips64 :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700127ART_TARGET_CLANG_CFLAGS_x86 :=
128ART_TARGET_CLANG_CFLAGS_x86_64 :=
129
Ian Rogersd642a912014-10-02 09:41:44 -0700130# These are necessary for Clang ARM64 ART builds. TODO: remove.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700131ART_TARGET_CLANG_CFLAGS_arm64 += \
Andreas Gampe685fbe42015-01-27 14:36:38 -0800132 -DNVALGRIND
Ian Rogersafd9acc2014-06-17 08:21:54 -0700133
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700134# Warn about thread safety violations with clang.
Mathieu Chartier90443472015-07-16 20:32:27 -0700135art_clang_cflags := -Wthread-safety -Wthread-safety-negative
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700136
137# Warn if switch fallthroughs aren't annotated.
138art_clang_cflags += -Wimplicit-fallthrough
139
140# Enable float equality warnings.
141art_clang_cflags += -Wfloat-equal
142
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800143# Enable warning of converting ints to void*.
144art_clang_cflags += -Wint-to-void-pointer-cast
145
Andreas Gampeca714582015-04-03 19:41:34 -0700146# Enable warning of wrong unused annotations.
147art_clang_cflags += -Wused-but-marked-unused
148
Andreas Gampe758a8012015-04-03 21:28:42 -0700149# Enable warning for deprecated language features.
150art_clang_cflags += -Wdeprecated
151
Andreas Gampe66222662015-04-06 19:50:46 -0700152# Enable warning for unreachable break & return.
153art_clang_cflags += -Wunreachable-code-break -Wunreachable-code-return
154
155# Enable missing-noreturn only on non-Mac. As lots of things are not implemented for Apple, it's
156# a pain.
157ifneq ($(HOST_OS),darwin)
158 art_clang_cflags += -Wmissing-noreturn
159endif
Andreas Gampe65b798e2015-04-06 09:35:22 -0700160
Andreas Gampeca714582015-04-03 19:41:34 -0700161
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800162# GCC-only warnings.
163art_gcc_cflags := -Wunused-but-set-parameter
164# Suggest const: too many false positives, but good for a trial run.
165# -Wsuggest-attribute=const
166# Useless casts: too many, as we need to be 32/64 agnostic, but the compiler knows.
167# -Wuseless-cast
168# Zero-as-null: Have to convert all NULL and "diagnostic ignore" all includes like libnativehelper
169# that are still stuck pre-C++11.
170# -Wzero-as-null-pointer-constant \
171# Suggest final: Have to move to a more recent GCC.
172# -Wsuggest-final-types
173
Andreas Gampebced67d2015-01-07 14:35:44 -0800174ART_TARGET_CLANG_CFLAGS := $(art_clang_cflags)
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700175ifeq ($(ART_HOST_CLANG),true)
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800176 # Bug: 15446488. We don't omit the frame pointer to work around
177 # clang/libunwind bugs that cause SEGVs in run-test-004-ThreadStress.
178 ART_HOST_CFLAGS += $(art_clang_cflags) -fno-omit-frame-pointer
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800179else
180 ART_HOST_CFLAGS += $(art_gcc_cflags)
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700181endif
Andreas Gampebced67d2015-01-07 14:35:44 -0800182ifneq ($(ART_TARGET_CLANG),true)
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800183 ART_TARGET_CFLAGS += $(art_gcc_cflags)
Andreas Gampebced67d2015-01-07 14:35:44 -0800184else
185 # TODO: if we ever want to support GCC/Clang mix for multi-target products, this needs to be
186 # split up.
187 ifeq ($(ART_TARGET_CLANG_$(TARGET_ARCH)),false)
188 ART_TARGET_CFLAGS += $(art_gcc_cflags)
189 endif
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700190endif
191
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800192# Clear local variables now their use has ended.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700193art_clang_cflags :=
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800194art_gcc_cflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700195
196ART_CPP_EXTENSION := .cc
197
198ART_C_INCLUDES := \
199 external/gtest/include \
Jeff Hao848f70a2014-01-15 13:49:50 -0800200 external/icu/icu4c/source/common \
Dmitriy Ivanov6130f732015-05-27 15:34:38 -0700201 external/valgrind/include \
202 external/valgrind \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700203 external/vixl/src \
204 external/zlib \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700205
206# Base set of cflags used by all things ART.
207art_cflags := \
208 -fno-rtti \
209 -std=gnu++11 \
210 -ggdb3 \
211 -Wall \
212 -Werror \
213 -Wextra \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700214 -Wstrict-aliasing \
215 -fstrict-aliasing \
216 -Wunreachable-code \
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800217 -Wredundant-decls \
218 -Wshadow \
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800219 -Wunused \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700220 -fvisibility=protected \
221 $(art_default_gc_type_cflags)
222
Roland Levillain12bd7212015-06-04 17:50:27 +0100223# Base set of asflags used by all things ART.
224art_asflags :=
225
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800226# Missing declarations: too many at the moment, as we use "extern" quite a bit.
227# -Wmissing-declarations \
228
229
Mathieu Chartiercd195fe2014-11-25 18:36:01 -0800230
231ifdef ART_IMT_SIZE
232 art_cflags += -DIMT_SIZE=$(ART_IMT_SIZE)
233else
234 # Default is 64
235 art_cflags += -DIMT_SIZE=64
236endif
237
Nicolas Geoffray9bb492a2014-11-25 23:42:00 +0000238ifeq ($(ART_USE_OPTIMIZING_COMPILER),true)
239 art_cflags += -DART_USE_OPTIMIZING_COMPILER=1
240endif
241
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800242ifeq ($(ART_HEAP_POISONING),true)
243 art_cflags += -DART_HEAP_POISONING=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100244 art_asflags += -DART_HEAP_POISONING=1
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800245endif
246
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800247ifeq ($(ART_USE_READ_BARRIER),true)
248 art_cflags += -DART_USE_READ_BARRIER=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100249 art_asflags += -DART_USE_READ_BARRIER=1
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800250endif
251
Hiroshi Yamauchi79bd2bf2015-03-20 10:28:34 -0700252ifeq ($(ART_USE_TLAB),true)
253 art_cflags += -DART_USE_TLAB=1
254endif
255
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700256# Cflags for non-debug ART and ART tools.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700257art_non_debug_cflags := \
258 -O3
259
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700260# Cflags for debug ART and ART tools.
261art_debug_cflags := \
Nicolas Geoffray40e7f0e2015-02-03 10:13:27 +0000262 -O2 \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700263 -DDYNAMIC_ANNOTATIONS_ENABLED=1 \
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000264 -DVIXL_DEBUG \
Ian Rogers50fe6da2014-10-17 01:18:08 -0700265 -UNDEBUG
Stephen Hines67a43382014-07-17 01:49:18 -0700266
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700267art_host_non_debug_cflags := $(art_non_debug_cflags)
268art_target_non_debug_cflags := $(art_non_debug_cflags)
Stephen Hines67a43382014-07-17 01:49:18 -0700269
Ian Rogersafd9acc2014-06-17 08:21:54 -0700270ifeq ($(HOST_OS),linux)
Stephen Hines67a43382014-07-17 01:49:18 -0700271 # Larger frame-size for host clang builds today
Dan Albert31fb2602014-09-30 22:10:10 -0700272 ifneq ($(ART_COVERAGE),true)
273 ifneq ($(NATIVE_COVERAGE),true)
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700274 art_host_non_debug_cflags += -Wframe-larger-than=2700
275 ifdef SANITIZE_TARGET
276 art_target_non_debug_cflags += -Wframe-larger-than=5450
277 else
Evgenii Stepanove1b6e972015-06-15 15:55:22 -0700278 art_target_non_debug_cflags += -Wframe-larger-than=1728
279 endif
Dan Albert31fb2602014-09-30 22:10:10 -0700280 endif
Dan Albert98b8bcf2014-11-14 19:56:21 -0800281 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700282endif
283
Ying Wanga28ff0f2014-12-08 14:29:34 -0800284ifndef LIBART_IMG_HOST_BASE_ADDRESS
285 $(error LIBART_IMG_HOST_BASE_ADDRESS unset)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700286endif
Ying Wanga28ff0f2014-12-08 14:29:34 -0800287ART_HOST_CFLAGS += $(art_cflags) -DART_BASE_ADDRESS=$(LIBART_IMG_HOST_BASE_ADDRESS)
288ART_HOST_CFLAGS += -DART_DEFAULT_INSTRUCTION_SET_FEATURES=default
Roland Levillain12bd7212015-06-04 17:50:27 +0100289ART_HOST_ASFLAGS += $(art_asflags)
Ying Wanga28ff0f2014-12-08 14:29:34 -0800290
291ifndef LIBART_IMG_TARGET_BASE_ADDRESS
292 $(error LIBART_IMG_TARGET_BASE_ADDRESS unset)
293endif
294ART_TARGET_CFLAGS += $(art_cflags) -DART_TARGET -DART_BASE_ADDRESS=$(LIBART_IMG_TARGET_BASE_ADDRESS)
Roland Levillain12bd7212015-06-04 17:50:27 +0100295ART_TARGET_ASFLAGS += $(art_asflags)
Alex Lighta59dd802014-07-02 16:28:08 -0700296
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700297ART_HOST_NON_DEBUG_CFLAGS := $(art_host_non_debug_cflags)
298ART_TARGET_NON_DEBUG_CFLAGS := $(art_target_non_debug_cflags)
299ART_HOST_DEBUG_CFLAGS := $(art_debug_cflags)
300ART_TARGET_DEBUG_CFLAGS := $(art_debug_cflags)
301
Alex Lighta59dd802014-07-02 16:28:08 -0700302ifndef LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA
303 LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA=-0x1000000
304endif
305ifndef LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA
306 LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA=0x1000000
307endif
308ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA)
309ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA)
310
311ifndef LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA
312 LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA=-0x1000000
313endif
314ifndef LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA
315 LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA=0x1000000
316endif
317ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA)
318ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA)
319
Ian Rogersafd9acc2014-06-17 08:21:54 -0700320# To use oprofile_android --callgraph, uncomment this and recompile with "mmm art -B -j16"
321# ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
322
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700323# Clear locals now they've served their purpose.
324art_cflags :=
Roland Levillain12bd7212015-06-04 17:50:27 +0100325art_asflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700326art_debug_cflags :=
327art_non_debug_cflags :=
328art_host_non_debug_cflags :=
329art_target_non_debug_cflags :=
330art_default_gc_type :=
331art_default_gc_type_cflags :=
332
333ART_HOST_LDLIBS :=
334ifneq ($(ART_HOST_CLANG),true)
335 # GCC lacks libc++ assumed atomic operations, grab via libatomic.
336 ART_HOST_LDLIBS += -latomic
Ian Rogersafd9acc2014-06-17 08:21:54 -0700337endif
338
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700339ART_TARGET_LDFLAGS :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700340
341# $(1): ndebug_or_debug
342define set-target-local-cflags-vars
343 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
344 LOCAL_CFLAGS_x86 += $(ART_TARGET_CFLAGS_x86)
Roland Levillain12bd7212015-06-04 17:50:27 +0100345 LOCAL_ASFLAGS += $(ART_TARGET_ASFLAGS)
Dehao Chen997660d2014-07-08 10:00:56 -0700346 LOCAL_LDFLAGS += $(ART_TARGET_LDFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700347 art_target_cflags_ndebug_or_debug := $(1)
348 ifeq ($$(art_target_cflags_ndebug_or_debug),debug)
349 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
350 else
351 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
352 endif
353
Andreas Gampebced67d2015-01-07 14:35:44 -0800354 LOCAL_CLANG_CFLAGS := $(ART_TARGET_CLANG_CFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700355 $(foreach arch,$(ART_SUPPORTED_ARCH),
Andreas Gampebced67d2015-01-07 14:35:44 -0800356 LOCAL_CLANG_CFLAGS_$(arch) += $$(ART_TARGET_CLANG_CFLAGS_$(arch)))
Ian Rogersafd9acc2014-06-17 08:21:54 -0700357
358 # Clear locally used variables.
359 art_target_cflags_ndebug_or_debug :=
360endef
361
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700362# Support for disabling certain builds.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700363ART_BUILD_TARGET := false
364ART_BUILD_HOST := false
365ART_BUILD_NDEBUG := false
366ART_BUILD_DEBUG := false
367ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
368 ART_BUILD_TARGET := true
369 ART_BUILD_NDEBUG := true
370endif
371ifeq ($(ART_BUILD_TARGET_DEBUG),true)
372 ART_BUILD_TARGET := true
373 ART_BUILD_DEBUG := true
374endif
375ifeq ($(ART_BUILD_HOST_NDEBUG),true)
376 ART_BUILD_HOST := true
377 ART_BUILD_NDEBUG := true
378endif
379ifeq ($(ART_BUILD_HOST_DEBUG),true)
380 ART_BUILD_HOST := true
381 ART_BUILD_DEBUG := true
382endif
383
Igor Murashkin37743352014-11-13 14:38:00 -0800384endif # ART_ANDROID_COMMON_BUILD_MK