Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: webrtc/system_wrappers/BUILD.gn

Issue 2037403003: GN: Fix errors in rtc_include_tests conditions (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698