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