OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 24 matching lines...) Expand all Loading... |
35 'targets': [ | 35 'targets': [ |
36 { | 36 { |
37 'target_name': 'webrtc_h264_video_toolbox', | 37 'target_name': 'webrtc_h264_video_toolbox', |
38 'type': 'static_library', | 38 'type': 'static_library', |
39 'dependencies': [ | 39 'dependencies': [ |
40 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 40 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
41 ], | 41 ], |
42 'link_settings': { | 42 'link_settings': { |
43 'xcode_settings': { | 43 'xcode_settings': { |
44 'OTHER_LDFLAGS': [ | 44 'OTHER_LDFLAGS': [ |
| 45 '-framework CoreFoundation', |
45 '-framework CoreMedia', | 46 '-framework CoreMedia', |
46 '-framework CoreVideo', | 47 '-framework CoreVideo', |
47 '-framework VideoToolbox', | 48 '-framework VideoToolbox', |
48 ], | 49 ], |
49 }, | 50 }, |
50 }, | 51 }, |
51 'sources': [ | 52 'sources': [ |
52 'h264_video_toolbox_decoder.cc', | 53 'h264_video_toolbox_decoder.cc', |
53 'h264_video_toolbox_decoder.h', | 54 'h264_video_toolbox_decoder.h', |
54 'h264_video_toolbox_encoder.cc', | 55 'h264_video_toolbox_encoder.cc', |
55 'h264_video_toolbox_encoder.h', | 56 'h264_video_toolbox_encoder.h', |
56 'h264_video_toolbox_nalu.cc', | 57 'h264_video_toolbox_nalu.cc', |
57 'h264_video_toolbox_nalu.h', | 58 'h264_video_toolbox_nalu.h', |
58 ], | 59 ], |
59 }, # webrtc_h264_video_toolbox | 60 }, # webrtc_h264_video_toolbox |
60 ], # targets | 61 ], # targets |
61 }], # OS=="ios" | 62 }], # OS=="ios" |
62 ], # conditions | 63 ], # conditions |
63 } | 64 } |
OLD | NEW |