| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "devices/carbonvideorenderer.h", | 188 "devices/carbonvideorenderer.h", |
| 189 ] | 189 ] |
| 190 libs += [ "Carbon.framework" ] | 190 libs += [ "Carbon.framework" ] |
| 191 } | 191 } |
| 192 if (is_ios || (is_mac && current_cpu != "x86")) { | 192 if (is_ios || (is_mac && current_cpu != "x86")) { |
| 193 defines += [ "CARBON_DEPRECATED=YES" ] | 193 defines += [ "CARBON_DEPRECATED=YES" ] |
| 194 } | 194 } |
| 195 | 195 |
| 196 deps += [ | 196 deps += [ |
| 197 "..:webrtc_common", | 197 "..:webrtc_common", |
| 198 "../api:call_api", |
| 198 "../base:rtc_base_approved", | 199 "../base:rtc_base_approved", |
| 199 "../call", | 200 "../call", |
| 200 "../libjingle/xmllite", | 201 "../libjingle/xmllite", |
| 201 "../libjingle/xmpp", | 202 "../libjingle/xmpp", |
| 202 "../modules/video_coding", | 203 "../modules/video_coding", |
| 203 "../p2p", | 204 "../p2p", |
| 204 "../system_wrappers", | 205 "../system_wrappers", |
| 205 "../video", | 206 "../video", |
| 206 "../voice_engine", | 207 "../voice_engine", |
| 207 ] | 208 ] |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 deps += [ | 353 deps += [ |
| 353 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 354 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 354 ":rtc_media", | 355 ":rtc_media", |
| 355 ":rtc_unittest_main", | 356 ":rtc_unittest_main", |
| 356 "../audio", | 357 "../audio", |
| 357 "../base:rtc_base_tests_utils", | 358 "../base:rtc_base_tests_utils", |
| 358 "../system_wrappers:metrics_default", | 359 "../system_wrappers:metrics_default", |
| 359 ] | 360 ] |
| 360 } | 361 } |
| 361 } | 362 } |
| OLD | NEW |