blob: 514f8c198fa4fa52595a5735da44ac47842a0f71 [file] [log] [blame]
Dan Albert27d166c2014-10-16 20:47:51 -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
Jeff Brown66db6892010-04-22 18:58:52 -070017# Build the unit tests.
18LOCAL_PATH := $(call my-dir)
Jeff Brown66db6892010-04-22 18:58:52 -070019
Dan Albert27d166c2014-10-16 20:47:51 -070020include $(CLEAR_VARS)
Dan Albert27d166c2014-10-16 20:47:51 -070021
22LOCAL_MODULE := libutils_tests
23
24LOCAL_SRC_FILES := \
Kenny Root2fe13f12012-10-02 09:09:10 -070025 BlobCache_test.cpp \
Michael Wrightd614ee42013-05-21 14:11:34 -070026 BitSet_test.cpp \
Kenny Root2fe13f12012-10-02 09:09:10 -070027 Looper_test.cpp \
Raph Levienb6ea1752012-10-25 23:11:13 -070028 LruCache_test.cpp \
Kenny Root2fe13f12012-10-02 09:09:10 -070029 String8_test.cpp \
30 Unicode_test.cpp \
Dan Albert27d166c2014-10-16 20:47:51 -070031 Vector_test.cpp \
Jeff Brown66db6892010-04-22 18:58:52 -070032
Dan Albert27d166c2014-10-16 20:47:51 -070033LOCAL_SHARED_LIBRARIES := \
Kenny Root2fe13f12012-10-02 09:09:10 -070034 libz \
35 liblog \
36 libcutils \
37 libutils \
Jeff Brown66db6892010-04-22 18:58:52 -070038
Dan Albert27d166c2014-10-16 20:47:51 -070039include $(BUILD_NATIVE_TEST)