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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 source_set("cpu_features_linux") { | 186 source_set("cpu_features_linux") { |
187 sources = [ | 187 sources = [ |
188 "source/cpu_features_linux.c", | 188 "source/cpu_features_linux.c", |
189 ] | 189 ] |
190 | 190 |
191 configs += [ "..:common_config" ] | 191 configs += [ "..:common_config" ] |
192 public_configs = [ "..:common_inherited_config" ] | 192 public_configs = [ "..:common_inherited_config" ] |
193 } | 193 } |
194 } | 194 } |
195 | 195 |
196 if (!rtc_include_tests) { | 196 if (rtc_include_tests) { |
197 test("system_wrappers_unittests") { | 197 test("system_wrappers_unittests") { |
198 testonly = true | 198 testonly = true |
199 sources = [ | 199 sources = [ |
200 "source/aligned_array_unittest.cc", | 200 "source/aligned_array_unittest.cc", |
201 "source/aligned_malloc_unittest.cc", | 201 "source/aligned_malloc_unittest.cc", |
202 "source/clock_unittest.cc", | 202 "source/clock_unittest.cc", |
203 "source/condition_variable_unittest.cc", | 203 "source/condition_variable_unittest.cc", |
204 "source/critical_section_unittest.cc", | 204 "source/critical_section_unittest.cc", |
205 "source/data_log_c_helpers_unittest.c", | 205 "source/data_log_c_helpers_unittest.c", |
206 "source/data_log_c_helpers_unittest.h", | 206 "source/data_log_c_helpers_unittest.h", |
(...skipping 30 matching lines...) Expand all Loading... |
237 ":system_wrappers", | 237 ":system_wrappers", |
238 "../test:test_support_main", | 238 "../test:test_support_main", |
239 "//testing/gtest", | 239 "//testing/gtest", |
240 ] | 240 ] |
241 | 241 |
242 if (is_android) { | 242 if (is_android) { |
243 deps += [ "//testing/android/native_test:native_test_support" ] | 243 deps += [ "//testing/android/native_test:native_test_support" ] |
244 } | 244 } |
245 } | 245 } |
246 } | 246 } |
OLD | NEW |