OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 | 10 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 source_set("webrtc_h264_video_toolbox") { | 177 source_set("webrtc_h264_video_toolbox") { |
178 sources = [ | 178 sources = [ |
179 "codecs/h264/h264_video_toolbox_decoder.cc", | 179 "codecs/h264/h264_video_toolbox_decoder.cc", |
180 "codecs/h264/h264_video_toolbox_decoder.h", | 180 "codecs/h264/h264_video_toolbox_decoder.h", |
181 "codecs/h264/h264_video_toolbox_encoder.cc", | 181 "codecs/h264/h264_video_toolbox_encoder.cc", |
182 "codecs/h264/h264_video_toolbox_encoder.h", | 182 "codecs/h264/h264_video_toolbox_encoder.h", |
183 "codecs/h264/h264_video_toolbox_nalu.cc", | 183 "codecs/h264/h264_video_toolbox_nalu.cc", |
184 "codecs/h264/h264_video_toolbox_nalu.h", | 184 "codecs/h264/h264_video_toolbox_nalu.h", |
185 ] | 185 ] |
186 | 186 |
187 configs += [ "//build/config/compiler:enable_arc" ] | 187 configs += [ |
188 | 188 "../..:common_objc", |
189 cflags = [ "-Wobjc-missing-property-synthesis" ] | 189 "//build/config/compiler:enable_arc", |
190 | 190 ] |
191 precompiled_header = "../../sdk/objc/WebRTC-Prefix.pch" | |
192 precompiled_source = "../../sdk/objc/WebRTC-Prefix.pch" | |
193 | 191 |
194 deps = [ | 192 deps = [ |
195 "../../sdk:rtc_sdk_common_objc", | 193 "../../sdk:rtc_sdk_common_objc", |
196 ] | 194 ] |
197 | 195 |
198 libs = [ | 196 libs = [ |
199 "CoreFoundation.framework", | 197 "CoreFoundation.framework", |
200 "CoreMedia.framework", | 198 "CoreMedia.framework", |
201 "CoreVideo.framework", | 199 "CoreVideo.framework", |
202 "VideoToolbox.framework", | 200 "VideoToolbox.framework", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 301 |
304 deps = [ | 302 deps = [ |
305 ":video_coding_utility", | 303 ":video_coding_utility", |
306 "../../common_video", | 304 "../../common_video", |
307 "../../system_wrappers", | 305 "../../system_wrappers", |
308 ] | 306 ] |
309 if (rtc_build_libvpx) { | 307 if (rtc_build_libvpx) { |
310 deps += [ rtc_libvpx_dir ] | 308 deps += [ rtc_libvpx_dir ] |
311 } | 309 } |
312 } | 310 } |
OLD | NEW |