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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "base/videobroadcaster.cc", | 74 "base/videobroadcaster.cc", |
75 "base/videobroadcaster.h", | 75 "base/videobroadcaster.h", |
76 "base/videocapturer.cc", | 76 "base/videocapturer.cc", |
77 "base/videocapturer.h", | 77 "base/videocapturer.h", |
78 "base/videocapturerfactory.h", | 78 "base/videocapturerfactory.h", |
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/internalencoderfactory.cc", |
| 85 "engine/internalencoderfactory.h", |
84 "engine/nullwebrtcvideoengine.h", | 86 "engine/nullwebrtcvideoengine.h", |
85 "engine/payload_type_mapper.cc", | 87 "engine/payload_type_mapper.cc", |
86 "engine/payload_type_mapper.h", | 88 "engine/payload_type_mapper.h", |
87 "engine/simulcast.cc", | 89 "engine/simulcast.cc", |
88 "engine/simulcast.h", | 90 "engine/simulcast.h", |
89 "engine/videoencodersoftwarefallbackwrapper.cc", | 91 "engine/videoencodersoftwarefallbackwrapper.cc", |
90 "engine/videoencodersoftwarefallbackwrapper.h", | 92 "engine/videoencodersoftwarefallbackwrapper.h", |
91 "engine/webrtccommon.h", | 93 "engine/webrtccommon.h", |
92 "engine/webrtcmediaengine.cc", | 94 "engine/webrtcmediaengine.cc", |
93 "engine/webrtcmediaengine.h", | 95 "engine/webrtcmediaengine.h", |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 338 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
337 ":rtc_media", | 339 ":rtc_media", |
338 ":rtc_unittest_main", | 340 ":rtc_unittest_main", |
339 "../audio", | 341 "../audio", |
340 "../base:rtc_base_tests_utils", | 342 "../base:rtc_base_tests_utils", |
341 "../modules/audio_device:mock_audio_device", | 343 "../modules/audio_device:mock_audio_device", |
342 "../system_wrappers:metrics_default", | 344 "../system_wrappers:metrics_default", |
343 ] | 345 ] |
344 } | 346 } |
345 } | 347 } |
OLD | NEW |