| 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 = [ "//build/config/compiler:enable_arc" ] |
| 188 | |
| 189 cflags = [ "-Wobjc-missing-property-synthesis" ] | |
| 190 | |
| 191 precompiled_header = "../../sdk/objc/WebRTC-Prefix.pch" | |
| 192 precompiled_source = "../../sdk/objc/WebRTC-Prefix.pch" | |
| 193 | 188 |
| 194 deps = [ | 189 deps = [ |
| 190 "../..:common_objc", |
| 195 "../../sdk:rtc_sdk_common_objc", | 191 "../../sdk:rtc_sdk_common_objc", |
| 196 ] | 192 ] |
| 197 | 193 |
| 198 libs = [ | 194 libs = [ |
| 199 "CoreFoundation.framework", | 195 "CoreFoundation.framework", |
| 200 "CoreMedia.framework", | 196 "CoreMedia.framework", |
| 201 "CoreVideo.framework", | 197 "CoreVideo.framework", |
| 202 "VideoToolbox.framework", | 198 "VideoToolbox.framework", |
| 203 ] | 199 ] |
| 204 | 200 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 299 |
| 304 deps = [ | 300 deps = [ |
| 305 ":video_coding_utility", | 301 ":video_coding_utility", |
| 306 "../../common_video", | 302 "../../common_video", |
| 307 "../../system_wrappers", | 303 "../../system_wrappers", |
| 308 ] | 304 ] |
| 309 if (rtc_build_libvpx) { | 305 if (rtc_build_libvpx) { |
| 310 deps += [ rtc_libvpx_dir ] | 306 deps += [ rtc_libvpx_dir ] |
| 311 } | 307 } |
| 312 } | 308 } |
| OLD | NEW |