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

Side by Side Diff: webrtc/sdk/sdk.gyp

Issue 2476353006: Remove cyclic dependency in gyp build (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 ], # conditions 340 ], # conditions
341 }, # rtc_sdk_framework_objc 341 }, # rtc_sdk_framework_objc
342 ], # targets 342 ], # targets
343 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") 343 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")
344 ['OS=="ios"', { 344 ['OS=="ios"', {
345 'targets': [ 345 'targets': [
346 { 346 {
347 'target_name': 'webrtc_h264_video_toolbox', 347 'target_name': 'webrtc_h264_video_toolbox',
348 'type': 'static_library', 348 'type': 'static_library',
349 'includes': [ '../build/objc_common.gypi' ], 349 'includes': [ '../build/objc_common.gypi' ],
350 'dependencies': [
351 'rtc_sdk_common_objc',
352 ],
353 'link_settings': { 350 'link_settings': {
354 'xcode_settings': { 351 'xcode_settings': {
355 'OTHER_LDFLAGS': [ 352 'OTHER_LDFLAGS': [
356 '-framework CoreFoundation', 353 '-framework CoreFoundation',
357 '-framework CoreMedia', 354 '-framework CoreMedia',
358 '-framework CoreVideo', 355 '-framework CoreVideo',
359 '-framework VideoToolbox', 356 '-framework VideoToolbox',
360 ], 357 ],
361 }, 358 },
362 }, 359 },
(...skipping 10 matching lines...) Expand all
373 'conditions': [ 370 'conditions': [
374 ['build_libyuv==1', { 371 ['build_libyuv==1', {
375 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv'], 372 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv'],
376 }], 373 }],
377 ], 374 ],
378 }, # webrtc_h264_video_toolbox 375 }, # webrtc_h264_video_toolbox
379 ], # targets 376 ], # targets
380 }], # OS=="ios" 377 }], # OS=="ios"
381 ], 378 ],
382 } 379 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698