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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 "engine/webrtcmediaengine.h", | 142 "engine/webrtcmediaengine.h", |
144 "engine/webrtcvideocapturer.cc", | 143 "engine/webrtcvideocapturer.cc", |
145 "engine/webrtcvideocapturer.h", | 144 "engine/webrtcvideocapturer.h", |
146 "engine/webrtcvideocapturerfactory.cc", | 145 "engine/webrtcvideocapturerfactory.cc", |
147 "engine/webrtcvideocapturerfactory.h", | 146 "engine/webrtcvideocapturerfactory.h", |
148 "engine/webrtcvideodecoderfactory.h", | 147 "engine/webrtcvideodecoderfactory.h", |
149 "engine/webrtcvideoencoderfactory.cc", | 148 "engine/webrtcvideoencoderfactory.cc", |
150 "engine/webrtcvideoencoderfactory.h", | 149 "engine/webrtcvideoencoderfactory.h", |
151 "engine/webrtcvideoengine2.cc", | 150 "engine/webrtcvideoengine2.cc", |
152 "engine/webrtcvideoengine2.h", | 151 "engine/webrtcvideoengine2.h", |
153 "engine/webrtcvideoframe.h", | |
154 "engine/webrtcvoe.h", | 152 "engine/webrtcvoe.h", |
155 "engine/webrtcvoiceengine.cc", | 153 "engine/webrtcvoiceengine.cc", |
156 "engine/webrtcvoiceengine.h", | 154 "engine/webrtcvoiceengine.h", |
157 "sctp/sctptransportinternal.h", | 155 "sctp/sctptransportinternal.h", |
158 ] | 156 ] |
159 | 157 |
160 if (rtc_enable_sctp) { | 158 if (rtc_enable_sctp) { |
161 sources += [ | 159 sources += [ |
162 "sctp/sctptransport.cc", | 160 "sctp/sctptransport.cc", |
163 "sctp/sctptransport.h", | 161 "sctp/sctptransport.h", |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 "../modules/audio_processing:audio_processing", | 447 "../modules/audio_processing:audio_processing", |
450 "../modules/video_coding:video_coding_utility", | 448 "../modules/video_coding:video_coding_utility", |
451 "../modules/video_coding:webrtc_vp8", | 449 "../modules/video_coding:webrtc_vp8", |
452 "../p2p:rtc_p2p_unittests", | 450 "../p2p:rtc_p2p_unittests", |
453 "../system_wrappers:metrics_default", | 451 "../system_wrappers:metrics_default", |
454 "../test:test_support", | 452 "../test:test_support", |
455 "../voice_engine:voice_engine", | 453 "../voice_engine:voice_engine", |
456 ] | 454 ] |
457 } | 455 } |
458 } | 456 } |
OLD | NEW |