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

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

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Added three headers for backwards-compatibility, specifically for building chromium. Created 4 years 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
OLDNEW
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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 if (!build_with_chromium && is_clang) { 211 if (!build_with_chromium && is_clang) {
212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
214 } 214 }
215 215
216 libs += [ "AVFoundation.framework" ] 216 libs += [ "AVFoundation.framework" ]
217 217
218 deps += [ 218 deps += [
219 ":rtc_sdk_common_objc", 219 ":rtc_sdk_common_objc",
220 "../api:libjingle_peerconnection", 220 "../pc:libjingle_peerconnection",
221 ] 221 ]
222 222
223 if (rtc_build_libyuv) { 223 if (rtc_build_libyuv) {
224 deps += [ "$rtc_libyuv_dir" ] 224 deps += [ "$rtc_libyuv_dir" ]
225 public_deps = [ 225 public_deps = [
226 "$rtc_libyuv_dir", 226 "$rtc_libyuv_dir",
227 ] 227 ]
228 } 228 }
229 } 229 }
230 230
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 deps += [ "$rtc_libyuv_dir" ] 356 deps += [ "$rtc_libyuv_dir" ]
357 public_deps = [ 357 public_deps = [
358 "$rtc_libyuv_dir", 358 "$rtc_libyuv_dir",
359 ] 359 ]
360 } else { 360 } else {
361 # Need to add a directory normally exported by libyuv. 361 # Need to add a directory normally exported by libyuv.
362 include_dirs = [ "$rtc_libyuv_dir/include" ] 362 include_dirs = [ "$rtc_libyuv_dir/include" ]
363 } 363 }
364 } 364 }
365 } 365 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698