| 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("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 source_set("rtc_unittest_main") { | 222 source_set("rtc_unittest_main") { |
| 223 testonly = true | 223 testonly = true |
| 224 | 224 |
| 225 deps = [] | 225 deps = [] |
| 226 sources = [ | 226 sources = [ |
| 227 "base/fakemediaengine.h", | 227 "base/fakemediaengine.h", |
| 228 "base/fakenetworkinterface.h", | 228 "base/fakenetworkinterface.h", |
| 229 "base/fakertp.h", | 229 "base/fakertp.h", |
| 230 "base/fakevideocapturer.h", | 230 "base/fakevideocapturer.h", |
| 231 "base/fakevideorenderer.h", | 231 "base/fakevideorenderer.h", |
| 232 "base/test/mock_mediachannel.h", |
| 232 "base/testutils.cc", | 233 "base/testutils.cc", |
| 233 "base/testutils.h", | 234 "base/testutils.h", |
| 234 "engine/fakewebrtccall.cc", | 235 "engine/fakewebrtccall.cc", |
| 235 "engine/fakewebrtccall.h", | 236 "engine/fakewebrtccall.h", |
| 236 "engine/fakewebrtccommon.h", | 237 "engine/fakewebrtccommon.h", |
| 237 "engine/fakewebrtcdeviceinfo.h", | 238 "engine/fakewebrtcdeviceinfo.h", |
| 238 "engine/fakewebrtcvcmfactory.h", | 239 "engine/fakewebrtcvcmfactory.h", |
| 239 "engine/fakewebrtcvideocapturemodule.h", | 240 "engine/fakewebrtcvideocapturemodule.h", |
| 240 "engine/fakewebrtcvideoengine.h", | 241 "engine/fakewebrtcvideoengine.h", |
| 241 "engine/fakewebrtcvoiceengine.h", | 242 "engine/fakewebrtcvoiceengine.h", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 deps += [ | 355 deps += [ |
| 355 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 356 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 356 ":rtc_media", | 357 ":rtc_media", |
| 357 ":rtc_unittest_main", | 358 ":rtc_unittest_main", |
| 358 "../audio", | 359 "../audio", |
| 359 "../base:rtc_base_tests_utils", | 360 "../base:rtc_base_tests_utils", |
| 360 "../system_wrappers:metrics_default", | 361 "../system_wrappers:metrics_default", |
| 361 ] | 362 ] |
| 362 } | 363 } |
| 363 } | 364 } |
| OLD | NEW |