blob: 20af6f9f6ee5fc85a04a02e584565865a9fb8fac [file] [log] [blame]
kma@webrtc.org47676c52012-12-07 15:26:28 +00001
2# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3#
4# Use of this source code is governed by a BSD-style license
5# that can be found in the LICENSE file in the root of the source
6# tree. An additional intellectual property rights grant can be found
7# in the file PATENTS. All contributing project authors may
8# be found in the AUTHORS file in the root of the source tree.
9
10LOCAL_PATH := $(call my-dir)
11
12include $(CLEAR_VARS)
13include $(LOCAL_PATH)/../../android-webrtc.mk
14
15LOCAL_ARM_MODE := arm
16LOCAL_MODULE:= libwebrtc_test_support
17LOCAL_MODULE_TAGS := optional
18LOCAL_CPP_EXTENSION := .cc
19LOCAL_SRC_FILES:= \
20 testsupport/fileutils.cc \
21 testsupport/perf_test.cc
22
23# Flags passed to both C and C++ files.
24LOCAL_CFLAGS := \
25 $(MY_WEBRTC_COMMON_DEFS)
26
27LOCAL_C_INCLUDES := \
28 external/gtest/include \
29 external/webrtc \
30 external/webrtc/webrtc
31
32LOCAL_STATIC_LIBRARIES := \
33 libgtest
34
35ifndef NDK_ROOT
36include external/stlport/libstlport.mk
37endif
38include $(BUILD_STATIC_LIBRARY)
39