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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "base/codec.h", | 54 "base/codec.h", |
55 "base/cryptoparams.h", | 55 "base/cryptoparams.h", |
56 "base/device.h", | 56 "base/device.h", |
57 "base/mediachannel.h", | 57 "base/mediachannel.h", |
58 "base/mediaconstants.cc", | 58 "base/mediaconstants.cc", |
59 "base/mediaconstants.h", | 59 "base/mediaconstants.h", |
60 "base/mediaengine.cc", | 60 "base/mediaengine.cc", |
61 "base/mediaengine.h", | 61 "base/mediaengine.h", |
62 "base/rtpdataengine.cc", | 62 "base/rtpdataengine.cc", |
63 "base/rtpdataengine.h", | 63 "base/rtpdataengine.h", |
64 "base/rtpdump.cc", | |
65 "base/rtpdump.h", | |
66 "base/rtputils.cc", | 64 "base/rtputils.cc", |
67 "base/rtputils.h", | 65 "base/rtputils.h", |
68 "base/streamparams.cc", | 66 "base/streamparams.cc", |
69 "base/streamparams.h", | 67 "base/streamparams.h", |
70 "base/turnutils.cc", | 68 "base/turnutils.cc", |
71 "base/turnutils.h", | 69 "base/turnutils.h", |
72 "base/videoadapter.cc", | 70 "base/videoadapter.cc", |
73 "base/videoadapter.h", | 71 "base/videoadapter.h", |
74 "base/videobroadcaster.cc", | 72 "base/videobroadcaster.cc", |
75 "base/videobroadcaster.h", | 73 "base/videobroadcaster.h", |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 } | 315 } |
318 | 316 |
319 rtc_test("rtc_media_unittests") { | 317 rtc_test("rtc_media_unittests") { |
320 testonly = true | 318 testonly = true |
321 | 319 |
322 defines = [] | 320 defines = [] |
323 deps = [] | 321 deps = [] |
324 sources = [ | 322 sources = [ |
325 "base/codec_unittest.cc", | 323 "base/codec_unittest.cc", |
326 "base/rtpdataengine_unittest.cc", | 324 "base/rtpdataengine_unittest.cc", |
327 "base/rtpdump_unittest.cc", | |
328 "base/rtputils_unittest.cc", | 325 "base/rtputils_unittest.cc", |
329 "base/streamparams_unittest.cc", | 326 "base/streamparams_unittest.cc", |
330 "base/turnutils_unittest.cc", | 327 "base/turnutils_unittest.cc", |
331 "base/videoadapter_unittest.cc", | 328 "base/videoadapter_unittest.cc", |
332 "base/videobroadcaster_unittest.cc", | 329 "base/videobroadcaster_unittest.cc", |
333 "base/videocapturer_unittest.cc", | 330 "base/videocapturer_unittest.cc", |
334 "base/videocommon_unittest.cc", | 331 "base/videocommon_unittest.cc", |
335 "base/videoengine_unittest.h", | 332 "base/videoengine_unittest.h", |
336 "engine/internaldecoderfactory_unittest.cc", | 333 "engine/internaldecoderfactory_unittest.cc", |
337 "engine/nullwebrtcvideoengine_unittest.cc", | 334 "engine/nullwebrtcvideoengine_unittest.cc", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 383 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
387 ":rtc_media", | 384 ":rtc_media", |
388 ":rtc_unittest_main", | 385 ":rtc_unittest_main", |
389 "../audio", | 386 "../audio", |
390 "../base:rtc_base_tests_utils", | 387 "../base:rtc_base_tests_utils", |
391 "../modules/audio_device:mock_audio_device", | 388 "../modules/audio_device:mock_audio_device", |
392 "../system_wrappers:metrics_default", | 389 "../system_wrappers:metrics_default", |
393 ] | 390 ] |
394 } | 391 } |
395 } | 392 } |
OLD | NEW |