blob: c9aa8c8f11544c05f1ae59341534061cb5fc2340 [file] [log] [blame]
Ian Rogers02ed4c02013-09-06 13:10:04 -07001#
2# Copyright (C) 2012 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)
18
Ian Rogersafd9acc2014-06-17 08:21:54 -070019include art/build/Android.common_build.mk
Ian Rogers02ed4c02013-09-06 13:10:04 -070020
21LIBART_DISASSEMBLER_SRC_FILES := \
22 disassembler.cc \
23 disassembler_arm.cc \
Serban Constantinescue6622be2014-02-27 15:36:47 +000024 disassembler_arm64.cc \
Ian Rogers02ed4c02013-09-06 13:10:04 -070025 disassembler_mips.cc \
Andreas Gampe57b34292015-01-14 15:45:59 -080026 disassembler_mips64.cc \
Ian Rogers02ed4c02013-09-06 13:10:04 -070027 disassembler_x86.cc
28
29# $(1): target or host
30# $(2): ndebug or debug
31define build-libart-disassembler
32 ifneq ($(1),target)
33 ifneq ($(1),host)
34 $$(error expected target or host for argument 1, received $(1))
35 endif
36 endif
37 ifneq ($(2),ndebug)
38 ifneq ($(2),debug)
39 $$(error expected ndebug or debug for argument 2, received $(2))
40 endif
41 endif
42
43 art_target_or_host := $(1)
44 art_ndebug_or_debug := $(2)
45
46 include $(CLEAR_VARS)
Ian Rogersbd5ea6a2014-04-16 16:34:44 -070047 ifeq ($$(art_target_or_host),host)
48 LOCAL_IS_HOST_MODULE := true
Ian Rogers02ed4c02013-09-06 13:10:04 -070049 endif
50 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
51 ifeq ($$(art_ndebug_or_debug),ndebug)
52 LOCAL_MODULE := libart-disassembler
53 else # debug
54 LOCAL_MODULE := libartd-disassembler
55 endif
56
57 LOCAL_MODULE_TAGS := optional
58 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
59
60 LOCAL_SRC_FILES := $$(LIBART_DISASSEMBLER_SRC_FILES)
61
Ian Rogers02ed4c02013-09-06 13:10:04 -070062 ifeq ($$(art_target_or_host),target)
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -070063 $(call set-target-local-clang-vars)
64 $(call set-target-local-cflags-vars,$(2))
Ian Rogers02ed4c02013-09-06 13:10:04 -070065 else # host
66 LOCAL_CLANG := $(ART_HOST_CLANG)
Ian Rogers6f3dbba2014-10-14 17:41:57 -070067 LOCAL_LDLIBS := $(ART_HOST_LDLIBS)
Ian Rogers02ed4c02013-09-06 13:10:04 -070068 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -070069 ifeq ($$(art_ndebug_or_debug),debug)
70 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
71 else
72 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
73 endif
Ian Rogers02ed4c02013-09-06 13:10:04 -070074 endif
75
76 LOCAL_SHARED_LIBRARIES += liblog
77 ifeq ($$(art_ndebug_or_debug),debug)
Ian Rogers02ed4c02013-09-06 13:10:04 -070078 LOCAL_SHARED_LIBRARIES += libartd
79 else
Ian Rogers02ed4c02013-09-06 13:10:04 -070080 LOCAL_SHARED_LIBRARIES += libart
81 endif
82
83 LOCAL_C_INCLUDES += $(ART_C_INCLUDES) art/runtime
84
Ian Rogersafd9acc2014-06-17 08:21:54 -070085 LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk
Ian Rogers02ed4c02013-09-06 13:10:04 -070086 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
Dan Albert31fb2602014-09-30 22:10:10 -070087 LOCAL_NATIVE_COVERAGE := $(ART_COVERAGE)
Ian Rogers872dd822014-10-30 11:19:14 -070088 # For disassembler_arm64.
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +000089 ifeq ($$(art_ndebug_or_debug),debug)
90 LOCAL_SHARED_LIBRARIES += libvixld
91 else
92 LOCAL_SHARED_LIBRARIES += libvixl
93 endif
Ian Rogers02ed4c02013-09-06 13:10:04 -070094 ifeq ($$(art_target_or_host),target)
Ian Rogers02ed4c02013-09-06 13:10:04 -070095 include $(BUILD_SHARED_LIBRARY)
96 else # host
Ian Rogers02ed4c02013-09-06 13:10:04 -070097 include $(BUILD_HOST_SHARED_LIBRARY)
98 endif
99endef
100
101ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
102 $(eval $(call build-libart-disassembler,target,ndebug))
103endif
104ifeq ($(ART_BUILD_TARGET_DEBUG),true)
105 $(eval $(call build-libart-disassembler,target,debug))
106endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700107# We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
Junmo Park76ab3472014-08-11 21:28:16 +0900108ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Ian Rogersc5f17732014-06-05 20:48:42 -0700109 $(eval $(call build-libart-disassembler,host,ndebug))
110endif
Junmo Park76ab3472014-08-11 21:28:16 +0900111ifeq ($(ART_BUILD_HOST_DEBUG),true)
Ian Rogersc5f17732014-06-05 20:48:42 -0700112 $(eval $(call build-libart-disassembler,host,debug))
Ian Rogers02ed4c02013-09-06 13:10:04 -0700113endif