blob: 266c7d7d5ddb7272949e6d2f3345df20db220ab4 [file] [log] [blame]
Christopher Ferrisf04935c2013-12-20 18:43:21 -08001#
2# Copyright (C) 2014 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
17include $(CLEAR_VARS)
Dmitriy Ivanov4a9e1932014-10-17 11:47:18 -070018LOCAL_ADDITIONAL_DEPENDENCIES := $(common_additional_dependencies)
Christopher Ferrisf04935c2013-12-20 18:43:21 -080019
20LOCAL_MODULE := $(module)
21LOCAL_MODULE_TAGS := $(module_tag)
Christopher Ferrise9f7a9c2014-06-10 19:46:07 -070022ifeq ($(build_type),host)
Kevin Brodskyee2952e2016-12-09 09:54:42 +000023 # Always make host multilib
24 LOCAL_MULTILIB := both
Christopher Ferrise9f7a9c2014-06-10 19:46:07 -070025endif
26
27ifneq ($(findstring LIBRARY, $(build_target)),LIBRARY)
Kevin Brodskyee2952e2016-12-09 09:54:42 +000028 LOCAL_MODULE_STEM_32 := $(module)32
29 LOCAL_MODULE_STEM_64 := $(module)64
Dmitriy Ivanov04dc91a2014-07-01 14:10:16 -070030else
Kevin Brodskyee2952e2016-12-09 09:54:42 +000031ifneq ($($(module)_install_to_native_tests_dir),)
32 ifeq ($(build_type),host)
33 native_tests_var := HOST_OUT_NATIVE_TESTS
34 else
35 native_tests_var := TARGET_OUT_DATA_NATIVE_TESTS
36 endif
37
38 LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)$(native_tests_var))/$($(module)_install_to_native_tests_dir)
39 LOCAL_MODULE_PATH_64 := $($(native_tests_var))/$($(module)_install_to_native_tests_dir)
Dmitriy Ivanov04dc91a2014-07-01 14:10:16 -070040endif
Christopher Ferris345b49a2014-04-22 10:42:12 -070041endif
Christopher Ferrisf04935c2013-12-20 18:43:21 -080042
43LOCAL_CLANG := $($(module)_clang_$(build_type))
Dan Albert01f1ff22014-11-14 19:58:26 -080044
45ifneq ($($(module)_allow_asan),true)
Kevin Brodskyee2952e2016-12-09 09:54:42 +000046 LOCAL_SANITIZE := never
Dan Albert01f1ff22014-11-14 19:58:26 -080047endif
Christopher Ferrisf04935c2013-12-20 18:43:21 -080048
49LOCAL_FORCE_STATIC_EXECUTABLE := $($(module)_force_static_executable)
50
Dmitriy Ivanov7699d132014-11-18 17:26:31 -080051LOCAL_ALLOW_UNDEFINED_SYMBOLS := $($(module)_allow_undefined_symbols)
52
Dmitriy Ivanov9aea1642014-09-11 15:16:03 -070053ifneq ($($(module)_multilib),)
Kevin Brodskyee2952e2016-12-09 09:54:42 +000054 LOCAL_MULTILIB := $($(module)_multilib)
Dmitriy Ivanov9aea1642014-09-11 15:16:03 -070055endif
56
Evgenii Stepanov68650822015-06-10 13:38:39 -070057ifneq ($($(module)_relative_path),)
Kevin Brodskyee2952e2016-12-09 09:54:42 +000058 LOCAL_MODULE_RELATIVE_PATH := $($(module)_relative_path)
Evgenii Stepanov68650822015-06-10 13:38:39 -070059endif
60
Christopher Ferrisf04935c2013-12-20 18:43:21 -080061LOCAL_CFLAGS := \
62 $(common_cflags) \
63 $($(module)_cflags) \
64 $($(module)_cflags_$(build_type)) \
65
66LOCAL_CONLYFLAGS += \
67 $(common_conlyflags) \
68 $($(module)_conlyflags) \
69 $($(module)_conlyflags_$(build_type)) \
70
71LOCAL_CPPFLAGS += \
72 $(common_cppflags) \
73 $($(module)_cppflags) \
74 $($(module)_cppflags_$(build_type)) \
75
76LOCAL_C_INCLUDES := \
77 $(common_c_includes) \
78 $($(module)_c_includes) \
79 $($(module)_c_includes_$(build_type)) \
80
81LOCAL_SRC_FILES := \
82 $($(module)_src_files) \
83 $($(module)_src_files_$(build_type)) \
84
85LOCAL_STATIC_LIBRARIES := \
86 $($(module)_static_libraries) \
87 $($(module)_static_libraries_$(build_type)) \
88
89LOCAL_SHARED_LIBRARIES := \
90 $($(module)_shared_libraries) \
91 $($(module)_shared_libraries_$(build_type)) \
92
93LOCAL_WHOLE_STATIC_LIBRARIES := \
94 $($(module)_whole_static_libraries) \
95 $($(module)_whole_static_libraries_$(build_type)) \
96
97LOCAL_LDFLAGS := \
98 $($(module)_ldflags) \
99 $($(module)_ldflags_$(build_type)) \
100
101LOCAL_LDLIBS := \
102 $($(module)_ldlibs) \
103 $($(module)_ldlibs_$(build_type)) \
104
Yabin Cui1f553ea2017-01-13 12:31:59 -0800105LOCAL_CXX_STL := libc++_static
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800106
Dan Albert3a5aeba2014-09-26 15:37:52 -0700107ifeq ($(build_type),target)
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800108 include $(BUILD_$(build_target))
109endif
110
111ifeq ($(build_type),host)
112 # Only build if host builds are supported.
113 ifeq ($(build_host),true)
114 include $(BUILD_HOST_$(build_target))
115 endif
116endif