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("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "base/turnutils.h", | 66 "base/turnutils.h", |
67 "base/videoadapter.cc", | 67 "base/videoadapter.cc", |
68 "base/videoadapter.h", | 68 "base/videoadapter.h", |
69 "base/videobroadcaster.cc", | 69 "base/videobroadcaster.cc", |
70 "base/videobroadcaster.h", | 70 "base/videobroadcaster.h", |
71 "base/videocapturer.cc", | 71 "base/videocapturer.cc", |
72 "base/videocapturer.h", | 72 "base/videocapturer.h", |
73 "base/videocapturerfactory.h", | 73 "base/videocapturerfactory.h", |
74 "base/videocommon.cc", | 74 "base/videocommon.cc", |
75 "base/videocommon.h", | 75 "base/videocommon.h", |
| 76 "base/videoframe.h", |
76 "base/videosourcebase.cc", | 77 "base/videosourcebase.cc", |
77 "base/videosourcebase.h", | 78 "base/videosourcebase.h", |
78 ] | 79 ] |
79 | 80 |
80 configs += [ ":rtc_media_warnings_config" ] | 81 configs += [ ":rtc_media_warnings_config" ] |
81 | 82 |
82 if (!build_with_chromium && is_clang) { | 83 if (!build_with_chromium && is_clang) { |
83 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 84 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 85 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
85 } | 86 } |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 "engine/webrtcmediaengine.h", | 149 "engine/webrtcmediaengine.h", |
149 "engine/webrtcvideocapturer.cc", | 150 "engine/webrtcvideocapturer.cc", |
150 "engine/webrtcvideocapturer.h", | 151 "engine/webrtcvideocapturer.h", |
151 "engine/webrtcvideocapturerfactory.cc", | 152 "engine/webrtcvideocapturerfactory.cc", |
152 "engine/webrtcvideocapturerfactory.h", | 153 "engine/webrtcvideocapturerfactory.h", |
153 "engine/webrtcvideodecoderfactory.h", | 154 "engine/webrtcvideodecoderfactory.h", |
154 "engine/webrtcvideoencoderfactory.cc", | 155 "engine/webrtcvideoencoderfactory.cc", |
155 "engine/webrtcvideoencoderfactory.h", | 156 "engine/webrtcvideoencoderfactory.h", |
156 "engine/webrtcvideoengine2.cc", | 157 "engine/webrtcvideoengine2.cc", |
157 "engine/webrtcvideoengine2.h", | 158 "engine/webrtcvideoengine2.h", |
| 159 "engine/webrtcvideoframe.h", |
158 "engine/webrtcvoe.h", | 160 "engine/webrtcvoe.h", |
159 "engine/webrtcvoiceengine.cc", | 161 "engine/webrtcvoiceengine.cc", |
160 "engine/webrtcvoiceengine.h", | 162 "engine/webrtcvoiceengine.h", |
161 "sctp/sctptransportinternal.h", | 163 "sctp/sctptransportinternal.h", |
162 ] | 164 ] |
163 | 165 |
164 if (rtc_enable_sctp) { | 166 if (rtc_enable_sctp) { |
165 sources += [ | 167 sources += [ |
166 "sctp/sctptransport.cc", | 168 "sctp/sctptransport.cc", |
167 "sctp/sctptransport.h", | 169 "sctp/sctptransport.h", |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 "../modules/video_coding:video_coding_utility", | 460 "../modules/video_coding:video_coding_utility", |
459 "../modules/video_coding:webrtc_vp8", | 461 "../modules/video_coding:webrtc_vp8", |
460 "../p2p:p2p_test_utils", | 462 "../p2p:p2p_test_utils", |
461 "../system_wrappers:metrics_default", | 463 "../system_wrappers:metrics_default", |
462 "../test:audio_codec_mocks", | 464 "../test:audio_codec_mocks", |
463 "../test:test_support", | 465 "../test:test_support", |
464 "../voice_engine:voice_engine", | 466 "../voice_engine:voice_engine", |
465 ] | 467 ] |
466 } | 468 } |
467 } | 469 } |
OLD | NEW |