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

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

Issue 2656833002: AppRTCMobile links against framework target. (Closed)
Patch Set: Created 3 years, 11 months 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 | « webrtc/examples/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_ios) { 10 if (is_ios) {
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 ] 310 ]
311 311
312 sources = common_objc_headers 312 sources = common_objc_headers
313 public_headers = common_objc_headers 313 public_headers = common_objc_headers
314 314
315 if (!build_with_chromium) { 315 if (!build_with_chromium) {
316 sources += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ] 316 sources += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ]
317 public_headers += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ] 317 public_headers += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ]
318 } 318 }
319 319
320 ldflags = [ "-all_load" ] 320 ldflags = [
321 "-all_load",
322 "-install_name",
daniela-webrtc 2017/01/26 07:44:24 I'm not familiar with this flag. What is it suppos
kthelgason 2017/01/26 08:31:48 In short, it has to do with how macOS loads dynami
323 "@rpath/$output_name.framework/$output_name",
324 ]
321 325
322 deps = [ 326 deps = [
323 ":rtc_sdk_peerconnection_objc", 327 ":rtc_sdk_peerconnection_objc",
324 "../system_wrappers:field_trial_default", 328 "../system_wrappers:field_trial_default",
325 "../system_wrappers:metrics_default", 329 "../system_wrappers:metrics_default",
326 ] 330 ]
327 331
328 libs = [ 332 libs = [
329 "AVFoundation.framework", 333 "AVFoundation.framework",
330 "AudioToolbox.framework", 334 "AudioToolbox.framework",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 deps += [ "$rtc_libyuv_dir" ] 396 deps += [ "$rtc_libyuv_dir" ]
393 public_deps = [ 397 public_deps = [
394 "$rtc_libyuv_dir", 398 "$rtc_libyuv_dir",
395 ] 399 ]
396 } else { 400 } else {
397 # Need to add a directory normally exported by libyuv. 401 # Need to add a directory normally exported by libyuv.
398 include_dirs = [ "$rtc_libyuv_dir/include" ] 402 include_dirs = [ "$rtc_libyuv_dir/include" ]
399 } 403 }
400 } 404 }
401 } 405 }
OLDNEW
« no previous file with comments | « webrtc/examples/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698