Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2460793002: Delete videorendererfactory.h and cricket::GdiVideoRenderer. (Closed)
Patch Set: Drop windows link dependencies on d3d9.lib, gdi32.lib and strmiids.lib. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/media/devices/gdivideorenderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "base/videobroadcaster.cc", 75 "base/videobroadcaster.cc",
76 "base/videobroadcaster.h", 76 "base/videobroadcaster.h",
77 "base/videocapturer.cc", 77 "base/videocapturer.cc",
78 "base/videocapturer.h", 78 "base/videocapturer.h",
79 "base/videocapturerfactory.h", 79 "base/videocapturerfactory.h",
80 "base/videocommon.cc", 80 "base/videocommon.cc",
81 "base/videocommon.h", 81 "base/videocommon.h",
82 "base/videoframe.h", 82 "base/videoframe.h",
83 "base/videosourcebase.cc", 83 "base/videosourcebase.cc",
84 "base/videosourcebase.h", 84 "base/videosourcebase.h",
85 "devices/videorendererfactory.h",
86 "engine/nullwebrtcvideoengine.h", 85 "engine/nullwebrtcvideoengine.h",
87 "engine/payload_type_mapper.cc", 86 "engine/payload_type_mapper.cc",
88 "engine/payload_type_mapper.h", 87 "engine/payload_type_mapper.h",
89 "engine/simulcast.cc", 88 "engine/simulcast.cc",
90 "engine/simulcast.h", 89 "engine/simulcast.h",
91 "engine/webrtccommon.h", 90 "engine/webrtccommon.h",
92 "engine/webrtcmediaengine.cc", 91 "engine/webrtcmediaengine.cc",
93 "engine/webrtcmediaengine.h", 92 "engine/webrtcmediaengine.h",
94 "engine/webrtcvideocapturer.cc", 93 "engine/webrtcvideocapturer.cc",
95 "engine/webrtcvideocapturer.h", 94 "engine/webrtcvideocapturer.h",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 public_configs += [ ":rtc_media_defines_config" ] 154 public_configs += [ ":rtc_media_defines_config" ]
156 deps += [ "../modules/video_capture:video_capture_internal_impl" ] 155 deps += [ "../modules/video_capture:video_capture_internal_impl" ]
157 } 156 }
158 if (is_linux && rtc_use_gtk) { 157 if (is_linux && rtc_use_gtk) {
159 sources += [ 158 sources += [
160 "devices/gtkvideorenderer.cc", 159 "devices/gtkvideorenderer.cc",
161 "devices/gtkvideorenderer.h", 160 "devices/gtkvideorenderer.h",
162 ] 161 ]
163 public_configs += [ ":gtk-lib" ] 162 public_configs += [ ":gtk-lib" ]
164 } 163 }
165 if (is_win) {
166 sources += [
167 "devices/gdivideorenderer.cc",
168 "devices/gdivideorenderer.h",
169 ]
170 libs += [
171 "d3d9.lib",
172 "gdi32.lib",
173 "strmiids.lib",
174 ]
175 }
176 deps += [ 164 deps += [
177 "..:webrtc_common", 165 "..:webrtc_common",
178 "../api:call_api", 166 "../api:call_api",
179 "../base:rtc_base_approved", 167 "../base:rtc_base_approved",
180 "../call", 168 "../call",
181 "../modules/video_coding", 169 "../modules/video_coding",
182 "../p2p", 170 "../p2p",
183 "../system_wrappers", 171 "../system_wrappers",
184 "../video", 172 "../video",
185 "../voice_engine", 173 "../voice_engine",
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 deps += [ 333 deps += [
346 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 334 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
347 ":rtc_media", 335 ":rtc_media",
348 ":rtc_unittest_main", 336 ":rtc_unittest_main",
349 "../audio", 337 "../audio",
350 "../base:rtc_base_tests_utils", 338 "../base:rtc_base_tests_utils",
351 "../system_wrappers:metrics_default", 339 "../system_wrappers:metrics_default",
352 ] 340 ]
353 } 341 }
354 } 342 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/devices/gdivideorenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698