blob: e4165133265d1604d18761543f9b16b7cb9c54f4 [file] [log] [blame]
kjellander@webrtc.org78f440c2014-06-21 14:25:16 +00001# Copyright (c) 2014 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
kjellander@webrtc.org62711f82014-06-29 13:37:08 +00009import("//build/config/android/config.gni")
kjellander@webrtc.org78f440c2014-06-21 14:25:16 +000010import("../build/webrtc.gni")
11
12config("system_wrappers_inherited_config") {
13 include_dirs = [
14 "interface",
15 ]
16}
17
18static_library("system_wrappers") {
19 sources = [
20 "interface/aligned_malloc.h",
21 "interface/atomic32.h",
22 "interface/clock.h",
23 "interface/compile_assert.h",
24 "interface/condition_variable_wrapper.h",
25 "interface/cpu_info.h",
26 "interface/cpu_features_wrapper.h",
27 "interface/critical_section_wrapper.h",
28 "interface/data_log.h",
29 "interface/data_log_c.h",
30 "interface/data_log_impl.h",
31 "interface/event_tracer.h",
32 "interface/event_wrapper.h",
33 "interface/field_trial.h",
34 "interface/file_wrapper.h",
35 "interface/fix_interlocked_exchange_pointer_win.h",
36 "interface/logging.h",
37 "interface/ref_count.h",
38 "interface/rtp_to_ntp.h",
39 "interface/rw_lock_wrapper.h",
40 "interface/scoped_ptr.h",
41 "interface/scoped_refptr.h",
42 "interface/scoped_vector.h",
43 "interface/sleep.h",
44 "interface/sort.h",
45 "interface/static_instance.h",
46 "interface/stl_util.h",
47 "interface/stringize_macros.h",
48 "interface/thread_annotations.h",
49 "interface/thread_wrapper.h",
50 "interface/tick_util.h",
51 "interface/timestamp_extrapolator.h",
52 "interface/trace.h",
53 "interface/trace_event.h",
54 "interface/utf_util_win.h",
55 "source/aligned_malloc.cc",
56 "source/atomic32_mac.cc",
57 "source/atomic32_win.cc",
58 "source/clock.cc",
59 "source/condition_variable.cc",
60 "source/condition_variable_posix.cc",
61 "source/condition_variable_posix.h",
62 "source/condition_variable_event_win.cc",
63 "source/condition_variable_event_win.h",
64 "source/condition_variable_native_win.cc",
65 "source/condition_variable_native_win.h",
66 "source/cpu_info.cc",
67 "source/cpu_features.cc",
68 "source/critical_section.cc",
69 "source/critical_section_posix.cc",
70 "source/critical_section_posix.h",
71 "source/critical_section_win.cc",
72 "source/critical_section_win.h",
73 "source/data_log_c.cc",
74 "source/event.cc",
75 "source/event_posix.cc",
76 "source/event_posix.h",
77 "source/event_tracer.cc",
78 "source/event_win.cc",
79 "source/event_win.h",
80 "source/file_impl.cc",
81 "source/file_impl.h",
82 "source/logging.cc",
83 "source/rtp_to_ntp.cc",
84 "source/rw_lock.cc",
85 "source/rw_lock_generic.cc",
86 "source/rw_lock_generic.h",
87 "source/rw_lock_posix.cc",
88 "source/rw_lock_posix.h",
89 "source/rw_lock_win.cc",
90 "source/rw_lock_win.h",
91 "source/set_thread_name_win.h",
92 "source/sleep.cc",
93 "source/sort.cc",
94 "source/tick_util.cc",
95 "source/thread.cc",
96 "source/thread_posix.cc",
97 "source/thread_posix.h",
98 "source/thread_win.cc",
99 "source/thread_win.h",
100 "source/timestamp_extrapolator.cc",
101 "source/trace_impl.cc",
102 "source/trace_impl.h",
103 "source/trace_posix.cc",
104 "source/trace_posix.h",
105 "source/trace_win.cc",
106 "source/trace_win.h",
107 ]
108
109 configs += [ "..:common_config" ]
110
111 direct_dependent_configs = [
112 "..:common_inherited_config",
113 ":system_wrappers_inherited_config",
114 ]
115
116 if (enable_data_logging) {
117 sources += [ "source/data_log.cc" ]
118 } else {
119 sources += [ "source/data_log_no_op.cc" ]
120 }
121
122 defines = []
123 libs = []
kjellander@webrtc.org62711f82014-06-29 13:37:08 +0000124 deps = []
kjellander@webrtc.org78f440c2014-06-21 14:25:16 +0000125
126 if (is_android) {
127 sources += [
128 "interface/logcat_trace_context.h",
129 "source/logcat_trace_context.cc",
130 ]
131
132 defines += [
133 "WEBRTC_THREAD_RR",
134 # TODO(leozwang): Investigate CLOCK_REALTIME and CLOCK_MONOTONIC
135 # support on Android. Keep WEBRTC_CLOCK_TYPE_REALTIME for now,
136 # remove it after I verify that CLOCK_MONOTONIC is fully functional
137 # with condition and event functions in system_wrappers.
138 "WEBRTC_CLOCK_TYPE_REALTIME",
139 ]
140
kjellander@webrtc.org62711f82014-06-29 13:37:08 +0000141 deps += [ ":cpu_features_android" ]
kjellander@webrtc.org78f440c2014-06-21 14:25:16 +0000142
143 libs += [ "log" ]
144 }
145
146 if (is_linux) {
147 defines += [
148 "WEBRTC_THREAD_RR",
149 # TODO(andrew): can we select this automatically?
150 # Define this if the Linux system does not support CLOCK_MONOTONIC.
151 #"WEBRTC_CLOCK_TYPE_REALTIME",
152 ]
153
154 libs += [ "rt" ]
155 }
156
157 if (!is_mac && !is_ios) {
158 sources += [
159 "source/atomic32_posix.cc",
160 ]
161 }
162
163 if (is_ios || is_mac) {
164 defines += [
165 "WEBRTC_THREAD_RR",
166 "WEBRTC_CLOCK_TYPE_REALTIME",
167 ]
168 }
169
170 if (is_ios) {
171 sources += [
172 "source/atomic32_mac.cc",
173 ]
174 }
175
176 if (is_win) {
177 libs += [ "winmm.lib" ]
178
179 cflags = [
180 "/wd4267", # size_t to int truncation.
181 "/wd4334", # Ignore warning on shift operator promotion.
182 ]
183 }
184
185 include_dirs = [
186 "source/spreadsortlib",
187 ]
188
kjellander@webrtc.org62711f82014-06-29 13:37:08 +0000189 deps += [
kjellander@webrtc.org78f440c2014-06-21 14:25:16 +0000190 "../base:webrtc_base",
191 ]
192}
193
194source_set("field_trial_default") {
195 sources = [
196 "source/field_trial_default.cc",
197 ]
198 deps = [
199 ":system_wrappers",
200 ]
201}
202
203if (is_android) {
204 source_set("cpu_features_android") {
205 sources = [
206 "source/cpu_features_android.c",
207 ]
208
209 if (is_android_webview_build) {
210 libs += [ "cpufeatures.a" ]
211 } else {
212 deps = [ "//third_party/android_tools:cpu_features" ]
213 }
214 }
215}