OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 cflags = [ "-Wno-unused-variable" ] | 260 cflags = [ "-Wno-unused-variable" ] |
261 } | 261 } |
262 } | 262 } |
263 | 263 |
264 rtc_source_set("rtc_media_tests_utils") { | 264 rtc_source_set("rtc_media_tests_utils") { |
265 testonly = true | 265 testonly = true |
266 | 266 |
267 include_dirs = [] | 267 include_dirs = [] |
268 public_deps = [] | 268 public_deps = [] |
269 deps = [ | 269 deps = [ |
| 270 "..:video_stream_api", |
270 "../modules/audio_coding:rent_a_codec", | 271 "../modules/audio_coding:rent_a_codec", |
271 "../modules/audio_processing:audio_processing", | 272 "../modules/audio_processing:audio_processing", |
272 "../p2p:rtc_p2p", | 273 "../p2p:rtc_p2p", |
273 ] | 274 ] |
274 sources = [ | 275 sources = [ |
275 "base/fakemediaengine.h", | 276 "base/fakemediaengine.h", |
276 "base/fakenetworkinterface.h", | 277 "base/fakenetworkinterface.h", |
277 "base/fakertp.h", | 278 "base/fakertp.h", |
278 "base/fakevideocapturer.h", | 279 "base/fakevideocapturer.h", |
279 "base/fakevideorenderer.h", | 280 "base/fakevideorenderer.h", |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 "../modules/video_coding:video_coding_utility", | 458 "../modules/video_coding:video_coding_utility", |
458 "../modules/video_coding:webrtc_vp8", | 459 "../modules/video_coding:webrtc_vp8", |
459 "../p2p:p2p_test_utils", | 460 "../p2p:p2p_test_utils", |
460 "../system_wrappers:metrics_default", | 461 "../system_wrappers:metrics_default", |
461 "../test:audio_codec_mocks", | 462 "../test:audio_codec_mocks", |
462 "../test:test_support", | 463 "../test:test_support", |
463 "../voice_engine:voice_engine", | 464 "../voice_engine:voice_engine", |
464 ] | 465 ] |
465 } | 466 } |
466 } | 467 } |
OLD | NEW |