blob: 1c404781f382affc822893756a081a3a7793dd9c [file] [log] [blame]
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -07001#
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)
18
19LOCAL_MODULE := $(test_name)
20LOCAL_MODULE_TAGS := optional
21LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_NATIVE_TESTS)/$(test_path)
22
23LOCAL_ADDITIONAL_DEPENDENCIES := \
Christopher Ferrisfc0bd6b2015-06-25 17:51:54 +000024 $(LOCAL_PATH)/Android.test.mk \
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -070025
26LOCAL_CFLAGS := \
Christopher Ferrisfc0bd6b2015-06-25 17:51:54 +000027 $(jemalloc_common_cflags) \
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -070028 $(test_cflags) \
Christopher Ferrisfc0bd6b2015-06-25 17:51:54 +000029 -include $(LOCAL_PATH)/android/include/libc_logging.h \
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -070030
31LOCAL_C_INCLUDES := \
Christopher Ferrisfc0bd6b2015-06-25 17:51:54 +000032 $(jemalloc_common_c_includes) \
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -070033 $(LOCAL_PATH)/test/src \
34 $(LOCAL_PATH)/test/include \
35
36LOCAL_SRC_FILES := \
37 $(test_src) \
38
39LOCAL_STATIC_LIBRARIES := \
40 $(test_libs) \
Christopher Ferris96d58c82015-04-22 06:59:40 +000041
42LOCAL_SHARED_LIBRARIES := \
Christopher Ferris47368bd2014-07-14 15:31:36 -070043 libc \
44 liblog \
45 libm \
46
Christopher Ferrisc2ad06c2014-07-08 20:56:17 -070047include $(BUILD_EXECUTABLE)
48test_name :=
49test_src :=
50test_cflags :=
51test_libs :=
52test_path :=