blob: 63729dace1008e0138b1642b44247b68b060730b [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 Ivanov4d0c1f62014-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)
23# Always make host multilib
24LOCAL_MULTILIB := both
Christopher Ferrise9f7a9c2014-06-10 19:46:07 -070025endif
26
27ifneq ($(findstring LIBRARY, $(build_target)),LIBRARY)
Christopher Ferris345b49a2014-04-22 10:42:12 -070028 LOCAL_MODULE_STEM_32 := $(module)32
29 LOCAL_MODULE_STEM_64 := $(module)64
Dmitriy Ivanov04dc91a2014-07-01 14:10:16 -070030else
31ifeq ($($(module)_install_to_out_data),true)
Ying Wangdc42e202014-07-08 18:54:42 -070032 LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/$(module)
33 LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_NATIVE_TESTS)/$(module)
Dmitriy Ivanov04dc91a2014-07-01 14:10:16 -070034endif
Christopher Ferris345b49a2014-04-22 10:42:12 -070035endif
Christopher Ferrisf04935c2013-12-20 18:43:21 -080036
37LOCAL_CLANG := $($(module)_clang_$(build_type))
38
39LOCAL_FORCE_STATIC_EXECUTABLE := $($(module)_force_static_executable)
40
Dmitriy Ivanovf4cb6312014-09-11 15:16:03 -070041ifneq ($($(module)_multilib),)
42 LOCAL_MULTILIB := $($(module)_multilib)
43endif
44
Christopher Ferrisf04935c2013-12-20 18:43:21 -080045LOCAL_CFLAGS := \
46 $(common_cflags) \
47 $($(module)_cflags) \
48 $($(module)_cflags_$(build_type)) \
49
50LOCAL_CONLYFLAGS += \
51 $(common_conlyflags) \
52 $($(module)_conlyflags) \
53 $($(module)_conlyflags_$(build_type)) \
54
55LOCAL_CPPFLAGS += \
56 $(common_cppflags) \
57 $($(module)_cppflags) \
58 $($(module)_cppflags_$(build_type)) \
59
60LOCAL_C_INCLUDES := \
61 $(common_c_includes) \
62 $($(module)_c_includes) \
63 $($(module)_c_includes_$(build_type)) \
64
65LOCAL_SRC_FILES := \
66 $($(module)_src_files) \
67 $($(module)_src_files_$(build_type)) \
68
69LOCAL_STATIC_LIBRARIES := \
70 $($(module)_static_libraries) \
71 $($(module)_static_libraries_$(build_type)) \
72
73LOCAL_SHARED_LIBRARIES := \
74 $($(module)_shared_libraries) \
75 $($(module)_shared_libraries_$(build_type)) \
76
77LOCAL_WHOLE_STATIC_LIBRARIES := \
78 $($(module)_whole_static_libraries) \
79 $($(module)_whole_static_libraries_$(build_type)) \
80
81LOCAL_LDFLAGS := \
82 $($(module)_ldflags) \
83 $($(module)_ldflags_$(build_type)) \
84
85LOCAL_LDLIBS := \
86 $($(module)_ldlibs) \
87 $($(module)_ldlibs_$(build_type)) \
88
89ifeq ($(build_type),target)
Dan Albert7a390942014-05-19 23:46:51 +000090 include external/stlport/libstlport.mk
Christopher Ferrisf04935c2013-12-20 18:43:21 -080091
92 include $(BUILD_$(build_target))
93endif
94
95ifeq ($(build_type),host)
96 # Only build if host builds are supported.
97 ifeq ($(build_host),true)
98 include $(BUILD_HOST_$(build_target))
99 endif
100endif