| 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 = [] | |
| 301 if (is_ios) { | 300 if (is_ios) { |
| 302 sources += [ "testsupport/iosfileutils.mm" ] | 301 sources += [ "testsupport/iosfileutils.mm" ] |
| 303 deps += [ "../sdk:rtc_sdk_helpers_objc" ] | |
| 304 } | 302 } |
| 305 visibility = [ ":*" ] | 303 visibility = [ ":*" ] |
| 306 } | 304 } |
| 307 | 305 |
| 308 rtc_source_set("run_test") { | 306 rtc_source_set("run_test") { |
| 309 testonly = true | 307 testonly = true |
| 310 sources = [ | 308 sources = [ |
| 311 "run_test.h", | 309 "run_test.h", |
| 312 ] | 310 ] |
| 313 if (is_mac) { | 311 if (is_mac) { |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 ] | 500 ] |
| 503 } | 501 } |
| 504 | 502 |
| 505 rtc_source_set("audio_codec_mocks") { | 503 rtc_source_set("audio_codec_mocks") { |
| 506 testonly = true | 504 testonly = true |
| 507 sources = [ | 505 sources = [ |
| 508 "mock_audio_decoder.h", | 506 "mock_audio_decoder.h", |
| 509 "mock_audio_decoder_factory.h", | 507 "mock_audio_decoder_factory.h", |
| 510 ] | 508 ] |
| 511 } | 509 } |
| OLD | NEW |