• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS.  All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9LOCAL_PATH := $(call my-dir)
10
11include $(CLEAR_VARS)
12
13include $(LOCAL_PATH)/../../../android-webrtc.mk
14
15LOCAL_ARM_MODE := arm
16LOCAL_MODULE := libwebrtc_system_wrappers
17LOCAL_MODULE_TAGS := optional
18LOCAL_CPP_EXTENSION := .cc
19LOCAL_SRC_FILES := \
20    android/cpu-features.c \
21    cpu_features_android.c \
22    map.cc \
23    sort.cc \
24    aligned_malloc.cc \
25    atomic32_posix.cc \
26    condition_variable.cc \
27    cpu_no_op.cc \
28    cpu_features.cc \
29    cpu_info.cc \
30    critical_section.cc \
31    event.cc \
32    file_impl.cc \
33    list_no_stl.cc \
34    rw_lock.cc \
35    thread.cc \
36    trace_impl.cc \
37    condition_variable_posix.cc \
38    cpu_linux.cc \
39    critical_section_posix.cc \
40    event_posix.cc \
41    sleep.cc \
42    thread_posix.cc \
43    trace_posix.cc \
44    rw_lock_posix.cc
45
46LOCAL_CFLAGS := \
47    $(MY_WEBRTC_COMMON_DEFS)
48
49LOCAL_C_INCLUDES := \
50    $(LOCAL_PATH)/../.. \
51    $(LOCAL_PATH)/../interface \
52    $(LOCAL_PATH)/spreadsortlib
53
54LOCAL_SHARED_LIBRARIES := \
55    libcutils \
56    libdl
57
58ifndef NDK_ROOT
59ifndef WEBRTC_STL
60LOCAL_SHARED_LIBRARIES += libstlport
61include external/stlport/libstlport.mk
62else
63LOCAL_NDK_STL_VARIANT := $(WEBRTC_STL)
64LOCAL_SDK_VERSION := 14
65LOCAL_MODULE := $(LOCAL_MODULE)_$(WEBRTC_STL)
66endif
67else
68LOCAL_SHARED_LIBRARIES += libstlport
69endif
70
71include $(BUILD_STATIC_LIBRARY)
72