OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 14 matching lines...) Expand all Loading... |
25 "include/field_trial.h", | 25 "include/field_trial.h", |
26 "include/file_wrapper.h", | 26 "include/file_wrapper.h", |
27 "include/fix_interlocked_exchange_pointer_win.h", | 27 "include/fix_interlocked_exchange_pointer_win.h", |
28 "include/logging.h", | 28 "include/logging.h", |
29 "include/metrics.h", | 29 "include/metrics.h", |
30 "include/ntp_time.h", | 30 "include/ntp_time.h", |
31 "include/rtp_to_ntp.h", | 31 "include/rtp_to_ntp.h", |
32 "include/rw_lock_wrapper.h", | 32 "include/rw_lock_wrapper.h", |
33 "include/sleep.h", | 33 "include/sleep.h", |
34 "include/static_instance.h", | 34 "include/static_instance.h", |
35 "include/stl_util.h", | |
36 "include/stringize_macros.h", | 35 "include/stringize_macros.h", |
37 "include/timestamp_extrapolator.h", | 36 "include/timestamp_extrapolator.h", |
38 "include/trace.h", | 37 "include/trace.h", |
39 "include/utf_util_win.h", | 38 "include/utf_util_win.h", |
40 "source/aligned_malloc.cc", | 39 "source/aligned_malloc.cc", |
41 "source/atomic32_win.cc", | 40 "source/atomic32_win.cc", |
42 "source/clock.cc", | 41 "source/clock.cc", |
43 "source/condition_variable_event_win.cc", | 42 "source/condition_variable_event_win.cc", |
44 "source/condition_variable_event_win.h", | 43 "source/condition_variable_event_win.h", |
45 "source/cpu_features.cc", | 44 "source/cpu_features.cc", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 "source/aligned_malloc_unittest.cc", | 173 "source/aligned_malloc_unittest.cc", |
175 "source/clock_unittest.cc", | 174 "source/clock_unittest.cc", |
176 "source/condition_variable_unittest.cc", | 175 "source/condition_variable_unittest.cc", |
177 "source/critical_section_unittest.cc", | 176 "source/critical_section_unittest.cc", |
178 "source/event_timer_posix_unittest.cc", | 177 "source/event_timer_posix_unittest.cc", |
179 "source/logging_unittest.cc", | 178 "source/logging_unittest.cc", |
180 "source/metrics_default_unittest.cc", | 179 "source/metrics_default_unittest.cc", |
181 "source/metrics_unittest.cc", | 180 "source/metrics_unittest.cc", |
182 "source/ntp_time_unittest.cc", | 181 "source/ntp_time_unittest.cc", |
183 "source/rtp_to_ntp_unittest.cc", | 182 "source/rtp_to_ntp_unittest.cc", |
184 "source/stl_util_unittest.cc", | |
185 "source/stringize_macros_unittest.cc", | 183 "source/stringize_macros_unittest.cc", |
186 ] | 184 ] |
187 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 185 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
188 | 186 |
189 if (!build_with_chromium && is_clang) { | 187 if (!build_with_chromium && is_clang) { |
190 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 188 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
191 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 189 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
192 } | 190 } |
193 | 191 |
194 deps = [ | 192 deps = [ |
195 ":metrics_default", | 193 ":metrics_default", |
196 ":system_wrappers", | 194 ":system_wrappers", |
197 "../test:test_main", | 195 "../test:test_main", |
198 "//testing/gtest", | 196 "//testing/gtest", |
199 ] | 197 ] |
200 | 198 |
201 if (is_android) { | 199 if (is_android) { |
202 deps += [ "//testing/android/native_test:native_test_support" ] | 200 deps += [ "//testing/android/native_test:native_test_support" ] |
203 | 201 |
204 shard_timeout = 900 | 202 shard_timeout = 900 |
205 } | 203 } |
206 } | 204 } |
207 } | 205 } |
OLD | NEW |