| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 public_deps = [] | 320 public_deps = [] |
| 321 deps = [ | 321 deps = [ |
| 322 "..:video_stream_api", | 322 "..:video_stream_api", |
| 323 "../modules/audio_coding:rent_a_codec", | 323 "../modules/audio_coding:rent_a_codec", |
| 324 "../modules/audio_processing:audio_processing", | 324 "../modules/audio_processing:audio_processing", |
| 325 "../p2p:rtc_p2p", | 325 "../p2p:rtc_p2p", |
| 326 ] | 326 ] |
| 327 sources = [ | 327 sources = [ |
| 328 "base/fakemediaengine.h", | 328 "base/fakemediaengine.h", |
| 329 "base/fakenetworkinterface.h", | 329 "base/fakenetworkinterface.h", |
| 330 "base/fakertp.cc", |
| 330 "base/fakertp.h", | 331 "base/fakertp.h", |
| 331 "base/fakevideocapturer.h", | 332 "base/fakevideocapturer.h", |
| 332 "base/fakevideorenderer.h", | 333 "base/fakevideorenderer.h", |
| 333 "base/test/mock_mediachannel.h", | 334 "base/test/mock_mediachannel.h", |
| 334 "base/testutils.cc", | 335 "base/testutils.cc", |
| 335 "base/testutils.h", | 336 "base/testutils.h", |
| 336 "engine/fakewebrtccall.cc", | 337 "engine/fakewebrtccall.cc", |
| 337 "engine/fakewebrtccall.h", | 338 "engine/fakewebrtccall.h", |
| 338 "engine/fakewebrtcdeviceinfo.h", | 339 "engine/fakewebrtcdeviceinfo.h", |
| 339 "engine/fakewebrtcvcmfactory.h", | 340 "engine/fakewebrtcvcmfactory.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 "../modules/video_coding:video_coding_utility", | 517 "../modules/video_coding:video_coding_utility", |
| 517 "../modules/video_coding:webrtc_vp8", | 518 "../modules/video_coding:webrtc_vp8", |
| 518 "../p2p:p2p_test_utils", | 519 "../p2p:p2p_test_utils", |
| 519 "../system_wrappers:metrics_default", | 520 "../system_wrappers:metrics_default", |
| 520 "../test:audio_codec_mocks", | 521 "../test:audio_codec_mocks", |
| 521 "../test:test_support", | 522 "../test:test_support", |
| 522 "../voice_engine:voice_engine", | 523 "../voice_engine:voice_engine", |
| 523 ] | 524 ] |
| 524 } | 525 } |
| 525 } | 526 } |
| OLD | NEW |