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 include_dirs = [] | 260 include_dirs = [] |
261 public_deps = [] | 261 public_deps = [] |
262 deps = [ | 262 deps = [ |
263 "../modules/audio_coding:rent_a_codec", | 263 "../modules/audio_coding:rent_a_codec", |
264 "../modules/audio_processing:audio_processing", | 264 "../modules/audio_processing:audio_processing", |
265 "../p2p:rtc_p2p", | 265 "../p2p:rtc_p2p", |
266 ] | 266 ] |
267 sources = [ | 267 sources = [ |
268 "base/fakemediaengine.h", | 268 "base/fakemediaengine.h", |
269 "base/fakenetworkinterface.h", | 269 "base/fakenetworkinterface.h", |
| 270 "base/fakertp.cc", |
270 "base/fakertp.h", | 271 "base/fakertp.h", |
271 "base/fakevideocapturer.h", | 272 "base/fakevideocapturer.h", |
272 "base/fakevideorenderer.h", | 273 "base/fakevideorenderer.h", |
273 "base/test/mock_mediachannel.h", | 274 "base/test/mock_mediachannel.h", |
274 "base/testutils.cc", | 275 "base/testutils.cc", |
275 "base/testutils.h", | 276 "base/testutils.h", |
276 "engine/fakewebrtccall.cc", | 277 "engine/fakewebrtccall.cc", |
277 "engine/fakewebrtccall.h", | 278 "engine/fakewebrtccall.h", |
278 "engine/fakewebrtcdeviceinfo.h", | 279 "engine/fakewebrtcdeviceinfo.h", |
279 "engine/fakewebrtcvcmfactory.h", | 280 "engine/fakewebrtcvcmfactory.h", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 "../modules/audio_processing:audio_processing", | 448 "../modules/audio_processing:audio_processing", |
448 "../modules/video_coding:video_coding_utility", | 449 "../modules/video_coding:video_coding_utility", |
449 "../modules/video_coding:webrtc_vp8", | 450 "../modules/video_coding:webrtc_vp8", |
450 "../p2p:rtc_p2p_unittests", | 451 "../p2p:rtc_p2p_unittests", |
451 "../system_wrappers:metrics_default", | 452 "../system_wrappers:metrics_default", |
452 "../test:test_support", | 453 "../test:test_support", |
453 "../voice_engine:voice_engine", | 454 "../voice_engine:voice_engine", |
454 ] | 455 ] |
455 } | 456 } |
456 } | 457 } |
OLD | NEW |