| OLD | NEW |
| 1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 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/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_ios) { | 10 if (is_ios) { |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 if (!build_with_chromium && is_clang) { | 213 if (!build_with_chromium && is_clang) { |
| 214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 216 } | 216 } |
| 217 | 217 |
| 218 libs += [ "AVFoundation.framework" ] | 218 libs += [ "AVFoundation.framework" ] |
| 219 | 219 |
| 220 deps += [ | 220 deps += [ |
| 221 ":rtc_sdk_common_objc", | 221 ":rtc_sdk_common_objc", |
| 222 "../api:libjingle_peerconnection", | 222 "../pc:libjingle_peerconnection", |
| 223 ] | 223 ] |
| 224 | 224 |
| 225 if (rtc_build_libyuv) { | 225 if (rtc_build_libyuv) { |
| 226 deps += [ "$rtc_libyuv_dir" ] | 226 deps += [ "$rtc_libyuv_dir" ] |
| 227 public_deps = [ | 227 public_deps = [ |
| 228 "$rtc_libyuv_dir", | 228 "$rtc_libyuv_dir", |
| 229 ] | 229 ] |
| 230 } | 230 } |
| 231 } | 231 } |
| 232 | 232 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 deps += [ "$rtc_libyuv_dir" ] | 392 deps += [ "$rtc_libyuv_dir" ] |
| 393 public_deps = [ | 393 public_deps = [ |
| 394 "$rtc_libyuv_dir", | 394 "$rtc_libyuv_dir", |
| 395 ] | 395 ] |
| 396 } else { | 396 } else { |
| 397 # Need to add a directory normally exported by libyuv. | 397 # Need to add a directory normally exported by libyuv. |
| 398 include_dirs = [ "$rtc_libyuv_dir/include" ] | 398 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 399 } | 399 } |
| 400 } | 400 } |
| 401 } | 401 } |
| OLD | NEW |