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 import("../webrtc.gni") | 9 import("../webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 ] | 290 ] |
291 } | 291 } |
292 } | 292 } |
293 | 293 |
294 rtc_source_set("fileutils") { | 294 rtc_source_set("fileutils") { |
295 testonly = true | 295 testonly = true |
296 sources = [ | 296 sources = [ |
297 "testsupport/fileutils.cc", | 297 "testsupport/fileutils.cc", |
298 "testsupport/fileutils.h", | 298 "testsupport/fileutils.h", |
299 ] | 299 ] |
| 300 deps = [] |
300 if (is_ios) { | 301 if (is_ios) { |
301 sources += [ "testsupport/iosfileutils.mm" ] | 302 sources += [ "testsupport/iosfileutils.mm" ] |
| 303 deps += [ "../sdk:rtc_sdk_helpers_objc" ] |
302 } | 304 } |
303 visibility = [ ":*" ] | 305 visibility = [ ":*" ] |
304 } | 306 } |
305 | 307 |
306 rtc_source_set("run_test") { | 308 rtc_source_set("run_test") { |
307 testonly = true | 309 testonly = true |
308 sources = [ | 310 sources = [ |
309 "run_test.h", | 311 "run_test.h", |
310 ] | 312 ] |
311 if (is_mac) { | 313 if (is_mac) { |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 ] | 502 ] |
501 } | 503 } |
502 | 504 |
503 rtc_source_set("audio_codec_mocks") { | 505 rtc_source_set("audio_codec_mocks") { |
504 testonly = true | 506 testonly = true |
505 sources = [ | 507 sources = [ |
506 "mock_audio_decoder.h", | 508 "mock_audio_decoder.h", |
507 "mock_audio_decoder_factory.h", | 509 "mock_audio_decoder_factory.h", |
508 ] | 510 ] |
509 } | 511 } |
OLD | NEW |