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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "base/videocommon.cc", | 79 "base/videocommon.cc", |
80 "base/videocommon.h", | 80 "base/videocommon.h", |
81 "base/videoframe.h", | 81 "base/videoframe.h", |
82 "base/videosourcebase.cc", | 82 "base/videosourcebase.cc", |
83 "base/videosourcebase.h", | 83 "base/videosourcebase.h", |
84 "engine/nullwebrtcvideoengine.h", | 84 "engine/nullwebrtcvideoengine.h", |
85 "engine/payload_type_mapper.cc", | 85 "engine/payload_type_mapper.cc", |
86 "engine/payload_type_mapper.h", | 86 "engine/payload_type_mapper.h", |
87 "engine/simulcast.cc", | 87 "engine/simulcast.cc", |
88 "engine/simulcast.h", | 88 "engine/simulcast.h", |
| 89 "engine/videoencodersoftwarefallbackwrapper.cc", |
| 90 "engine/videoencodersoftwarefallbackwrapper.h", |
89 "engine/webrtccommon.h", | 91 "engine/webrtccommon.h", |
90 "engine/webrtcmediaengine.cc", | 92 "engine/webrtcmediaengine.cc", |
91 "engine/webrtcmediaengine.h", | 93 "engine/webrtcmediaengine.h", |
92 "engine/webrtcvideocapturer.cc", | 94 "engine/webrtcvideocapturer.cc", |
93 "engine/webrtcvideocapturer.h", | 95 "engine/webrtcvideocapturer.h", |
94 "engine/webrtcvideocapturerfactory.cc", | 96 "engine/webrtcvideocapturerfactory.cc", |
95 "engine/webrtcvideocapturerfactory.h", | 97 "engine/webrtcvideocapturerfactory.h", |
96 "engine/webrtcvideodecoderfactory.h", | 98 "engine/webrtcvideodecoderfactory.h", |
97 "engine/webrtcvideoencoderfactory.cc", | 99 "engine/webrtcvideoencoderfactory.cc", |
98 "engine/webrtcvideoencoderfactory.h", | 100 "engine/webrtcvideoencoderfactory.h", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "base/streamparams_unittest.cc", | 284 "base/streamparams_unittest.cc", |
283 "base/turnutils_unittest.cc", | 285 "base/turnutils_unittest.cc", |
284 "base/videoadapter_unittest.cc", | 286 "base/videoadapter_unittest.cc", |
285 "base/videobroadcaster_unittest.cc", | 287 "base/videobroadcaster_unittest.cc", |
286 "base/videocapturer_unittest.cc", | 288 "base/videocapturer_unittest.cc", |
287 "base/videocommon_unittest.cc", | 289 "base/videocommon_unittest.cc", |
288 "base/videoengine_unittest.h", | 290 "base/videoengine_unittest.h", |
289 "engine/nullwebrtcvideoengine_unittest.cc", | 291 "engine/nullwebrtcvideoengine_unittest.cc", |
290 "engine/payload_type_mapper_unittest.cc", | 292 "engine/payload_type_mapper_unittest.cc", |
291 "engine/simulcast_unittest.cc", | 293 "engine/simulcast_unittest.cc", |
| 294 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", |
292 "engine/webrtcmediaengine_unittest.cc", | 295 "engine/webrtcmediaengine_unittest.cc", |
293 "engine/webrtcvideocapturer_unittest.cc", | 296 "engine/webrtcvideocapturer_unittest.cc", |
294 "engine/webrtcvideoengine2_unittest.cc", | 297 "engine/webrtcvideoengine2_unittest.cc", |
295 "engine/webrtcvoiceengine_unittest.cc", | 298 "engine/webrtcvoiceengine_unittest.cc", |
296 "sctp/sctpdataengine_unittest.cc", | 299 "sctp/sctpdataengine_unittest.cc", |
297 ] | 300 ] |
298 | 301 |
299 configs += [ ":rtc_media_unittests_config" ] | 302 configs += [ ":rtc_media_unittests_config" ] |
300 | 303 |
301 if (rtc_use_h264) { | 304 if (rtc_use_h264) { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 336 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
334 ":rtc_media", | 337 ":rtc_media", |
335 ":rtc_unittest_main", | 338 ":rtc_unittest_main", |
336 "../audio", | 339 "../audio", |
337 "../base:rtc_base_tests_utils", | 340 "../base:rtc_base_tests_utils", |
338 "../modules/audio_device:mock_audio_device", | 341 "../modules/audio_device:mock_audio_device", |
339 "../system_wrappers:metrics_default", | 342 "../system_wrappers:metrics_default", |
340 ] | 343 ] |
341 } | 344 } |
342 } | 345 } |
OLD | NEW |