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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 sources += [ | 179 sources += [ |
180 "devices/gdivideorenderer.cc", | 180 "devices/gdivideorenderer.cc", |
181 "devices/gdivideorenderer.h", | 181 "devices/gdivideorenderer.h", |
182 ] | 182 ] |
183 libs += [ | 183 libs += [ |
184 "d3d9.lib", | 184 "d3d9.lib", |
185 "gdi32.lib", | 185 "gdi32.lib", |
186 "strmiids.lib", | 186 "strmiids.lib", |
187 ] | 187 ] |
188 } | 188 } |
189 if (is_mac && current_cpu == "x86") { | |
190 sources += [ | |
191 "devices/carbonvideorenderer.cc", | |
192 "devices/carbonvideorenderer.h", | |
193 ] | |
194 libs += [ "Carbon.framework" ] | |
195 } | |
196 if (is_ios || (is_mac && current_cpu != "x86")) { | |
197 defines += [ "CARBON_DEPRECATED=YES" ] | |
198 } | |
199 | |
200 deps += [ | 189 deps += [ |
201 "..:webrtc_common", | 190 "..:webrtc_common", |
202 "../api:call_api", | 191 "../api:call_api", |
203 "../base:rtc_base_approved", | 192 "../base:rtc_base_approved", |
204 "../call", | 193 "../call", |
205 "../libjingle/xmllite", | 194 "../libjingle/xmllite", |
206 "../libjingle/xmpp", | 195 "../libjingle/xmpp", |
207 "../modules/video_coding", | 196 "../modules/video_coding", |
208 "../p2p", | 197 "../p2p", |
209 "../system_wrappers", | 198 "../system_wrappers", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 deps += [ | 364 deps += [ |
376 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 365 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
377 ":rtc_media", | 366 ":rtc_media", |
378 ":rtc_unittest_main", | 367 ":rtc_unittest_main", |
379 "../audio", | 368 "../audio", |
380 "../base:rtc_base_tests_utils", | 369 "../base:rtc_base_tests_utils", |
381 "../system_wrappers:metrics_default", | 370 "../system_wrappers:metrics_default", |
382 ] | 371 ] |
383 } | 372 } |
384 } | 373 } |
OLD | NEW |