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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "base/videocapturerfactory.h", | 82 "base/videocapturerfactory.h", |
83 "base/videocommon.cc", | 83 "base/videocommon.cc", |
84 "base/videocommon.h", | 84 "base/videocommon.h", |
85 "base/videoframe.cc", | 85 "base/videoframe.cc", |
86 "base/videoframe.h", | 86 "base/videoframe.h", |
87 "base/videoframefactory.cc", | 87 "base/videoframefactory.cc", |
88 "base/videoframefactory.h", | 88 "base/videoframefactory.h", |
89 "base/videorenderer.h", | 89 "base/videorenderer.h", |
90 "base/videosourcebase.cc", | 90 "base/videosourcebase.cc", |
91 "base/videosourcebase.h", | 91 "base/videosourcebase.h", |
92 "base/yuvframegenerator.cc", | |
93 "base/yuvframegenerator.h", | |
94 "devices/videorendererfactory.h", | 92 "devices/videorendererfactory.h", |
95 "engine/nullwebrtcvideoengine.h", | 93 "engine/nullwebrtcvideoengine.h", |
96 "engine/simulcast.cc", | 94 "engine/simulcast.cc", |
97 "engine/simulcast.h", | 95 "engine/simulcast.h", |
98 "engine/webrtccommon.h", | 96 "engine/webrtccommon.h", |
99 "engine/webrtcmediaengine.cc", | 97 "engine/webrtcmediaengine.cc", |
100 "engine/webrtcmediaengine.h", | 98 "engine/webrtcmediaengine.h", |
101 "engine/webrtcvideocapturer.cc", | 99 "engine/webrtcvideocapturer.cc", |
102 "engine/webrtcvideocapturer.h", | 100 "engine/webrtcvideocapturer.h", |
103 "engine/webrtcvideocapturerfactory.cc", | 101 "engine/webrtcvideocapturerfactory.cc", |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 deps += [ | 195 deps += [ |
198 "..:webrtc_common", | 196 "..:webrtc_common", |
199 "../base:rtc_base_approved", | 197 "../base:rtc_base_approved", |
200 "../libjingle/xmllite", | 198 "../libjingle/xmllite", |
201 "../libjingle/xmpp", | 199 "../libjingle/xmpp", |
202 "../p2p", | 200 "../p2p", |
203 "../system_wrappers", | 201 "../system_wrappers", |
204 "../voice_engine", | 202 "../voice_engine", |
205 ] | 203 ] |
206 } | 204 } |
OLD | NEW |