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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "engine/simulcast.cc", | 89 "engine/simulcast.cc", |
90 "engine/simulcast.h", | 90 "engine/simulcast.h", |
91 "engine/webrtccommon.h", | 91 "engine/webrtccommon.h", |
92 "engine/webrtcmediaengine.cc", | 92 "engine/webrtcmediaengine.cc", |
93 "engine/webrtcmediaengine.h", | 93 "engine/webrtcmediaengine.h", |
94 "engine/webrtcvideocapturer.cc", | 94 "engine/webrtcvideocapturer.cc", |
95 "engine/webrtcvideocapturer.h", | 95 "engine/webrtcvideocapturer.h", |
96 "engine/webrtcvideocapturerfactory.cc", | 96 "engine/webrtcvideocapturerfactory.cc", |
97 "engine/webrtcvideocapturerfactory.h", | 97 "engine/webrtcvideocapturerfactory.h", |
98 "engine/webrtcvideodecoderfactory.h", | 98 "engine/webrtcvideodecoderfactory.h", |
| 99 "engine/webrtcvideoencoderfactory.cc", |
99 "engine/webrtcvideoencoderfactory.h", | 100 "engine/webrtcvideoencoderfactory.h", |
100 "engine/webrtcvideoengine2.cc", | 101 "engine/webrtcvideoengine2.cc", |
101 "engine/webrtcvideoengine2.h", | 102 "engine/webrtcvideoengine2.h", |
102 "engine/webrtcvideoframe.h", | 103 "engine/webrtcvideoframe.h", |
103 "engine/webrtcvoe.h", | 104 "engine/webrtcvoe.h", |
104 "engine/webrtcvoiceengine.cc", | 105 "engine/webrtcvoiceengine.cc", |
105 "engine/webrtcvoiceengine.h", | 106 "engine/webrtcvoiceengine.h", |
106 "sctp/sctpdataengine.cc", | 107 "sctp/sctpdataengine.cc", |
107 "sctp/sctpdataengine.h", | 108 "sctp/sctpdataengine.h", |
108 ] | 109 ] |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 deps += [ | 346 deps += [ |
346 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 347 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
347 ":rtc_media", | 348 ":rtc_media", |
348 ":rtc_unittest_main", | 349 ":rtc_unittest_main", |
349 "../audio", | 350 "../audio", |
350 "../base:rtc_base_tests_utils", | 351 "../base:rtc_base_tests_utils", |
351 "../system_wrappers:metrics_default", | 352 "../system_wrappers:metrics_default", |
352 ] | 353 ] |
353 } | 354 } |
354 } | 355 } |
OLD | NEW |