blob: 8a58a20b04e20362c328fc34dd531954bdf6f924 [file] [log] [blame]
tkchin9eeb6242016-04-27 08:54:201# Copyright 2016 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
mbonadei9aa3f0a2017-01-24 14:58:229import("../webrtc.gni")
kthelgasonebc34e72016-09-15 11:30:1810if (is_ios) {
11 import("//build/config/ios/rules.gni")
oprypin45197522017-06-22 08:47:2012 import("//build/config/ios/ios_sdk.gni")
kthelgasonebc34e72016-09-15 11:30:1813}
Anders Carlsson7bca8ca2018-08-30 07:30:2914if (is_mac) {
15 import("//build/config/mac/rules.gni")
kthelgason2f088792017-05-30 08:48:4716}
17
kjellander6ceab082016-10-28 12:44:0318group("sdk") {
Henrik Kjellandera7d0df72017-06-27 06:56:4619 public_deps = []
20 if (!build_with_chromium) {
21 if (is_android) {
22 public_deps += [ "android" ]
23 }
24 if (is_ios) {
kthelgason36d658d2017-08-24 12:43:4525 public_deps += [ ":framework_objc" ]
Henrik Kjellandera7d0df72017-06-27 06:56:4626 }
kjellander6ceab082016-10-28 12:44:0327 }
28}
29
kthelgasoncc2d1c62016-11-09 15:44:2730if (is_ios || is_mac) {
kthelgason36d658d2017-08-24 12:43:4531 config("common_config_objc") {
kjellander080a1e32016-05-25 18:37:1132 include_dirs = [
Anders Carlsson7bca8ca2018-08-30 07:30:2933 "objc",
34
35 # This is needed so that framework headers can include base headers
36 # without pathname (so it works from within the framework module).
37 "objc/base",
38
39 # This is here for backward compatiblity reasons.
40 "objc/Framework/Headers", # TODO(bugs.webrtc.org/9627): Remove this.
kjellander080a1e32016-05-25 18:37:1141 ]
Kári Tristan Helgason47d3a012017-10-24 13:28:5142 cflags = [
43 "-Wstrict-overflow",
44 "-Wmissing-field-initializers",
45 ]
kjellander080a1e32016-05-25 18:37:1146 }
47
Anders Carlsson358f2e02018-06-04 08:24:3748 config("used_from_extension") {
49 if (is_ios && rtc_apprtcmobile_broadcast_extension) {
50 cflags = [ "-fapplication-extension" ]
51 }
52 }
53
Anders Carlsson7bca8ca2018-08-30 07:30:2954 # TODO(bugs.webrtc.org/9627): Remove this when unused. Targets should depend on base_objc
55 # or helpers_objc directly instead.
kthelgason36d658d2017-08-24 12:43:4556 rtc_static_library("common_objc") {
Mirko Bonadei2ad8c432018-08-09 08:54:4057 visibility = [ "*" ]
Anders Carlsson7bca8ca2018-08-30 07:30:2958
tkchin9eeb6242016-04-27 08:54:2059 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:2960 "objc/helpers/noop.mm",
61 ]
62
63 public_configs = [ ":common_config_objc" ]
64
65 deps = [
66 ":base_objc",
67 ":helpers_objc",
68 ]
69 }
70
71 rtc_static_library("base_objc") {
72 visibility = [ "*" ]
73 sources = [
74 "objc/base/RTCCodecSpecificInfo.h",
75 "objc/base/RTCEncodedImage.h",
76 "objc/base/RTCEncodedImage.m",
77 "objc/base/RTCI420Buffer.h",
78 "objc/base/RTCLogging.h",
79 "objc/base/RTCLogging.mm",
80 "objc/base/RTCMacros.h",
81 "objc/base/RTCMutableI420Buffer.h",
82 "objc/base/RTCMutableYUVPlanarBuffer.h",
83 "objc/base/RTCRtpFragmentationHeader.h",
84 "objc/base/RTCRtpFragmentationHeader.m",
85 "objc/base/RTCVideoCapturer.h",
86 "objc/base/RTCVideoCapturer.m",
87 "objc/base/RTCVideoCodecInfo.h",
88 "objc/base/RTCVideoCodecInfo.m",
89 "objc/base/RTCVideoDecoder.h",
90 "objc/base/RTCVideoDecoderFactory.h",
91 "objc/base/RTCVideoEncoder.h",
92 "objc/base/RTCVideoEncoderFactory.h",
93 "objc/base/RTCVideoEncoderQpThresholds.h",
94 "objc/base/RTCVideoEncoderQpThresholds.m",
95 "objc/base/RTCVideoEncoderSettings.h",
96 "objc/base/RTCVideoEncoderSettings.m",
97 "objc/base/RTCVideoFrame.h",
98 "objc/base/RTCVideoFrame.mm",
99 "objc/base/RTCVideoFrameBuffer.h",
100 "objc/base/RTCVideoRenderer.h",
101 "objc/base/RTCYUVPlanarBuffer.h",
tkchin9eeb6242016-04-27 08:54:20102 ]
denicijad2088152017-04-28 09:14:54103
mbonadei1e060c62017-04-21 07:02:02104 deps = [
Patrik Höglunda8005cf2017-12-13 15:05:42105 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47106 "../rtc_base:rtc_base",
mbonadei1e060c62017-04-21 07:02:02107 ]
Anders Carlsson358f2e02018-06-04 08:24:37108 configs += [
109 "..:common_objc",
110 ":used_from_extension",
111 ]
kthelgasonc0977102017-04-24 07:57:16112
kthelgason36d658d2017-08-24 12:43:45113 public_configs = [ ":common_config_objc" ]
Anders Carlsson7bca8ca2018-08-30 07:30:29114 }
115
116 rtc_static_library("helpers_objc") {
117 sources = [
118 "objc/helpers/AVCaptureSession+DevicePosition.h",
119 "objc/helpers/AVCaptureSession+DevicePosition.mm",
120 "objc/helpers/NSString+StdString.h",
121 "objc/helpers/NSString+StdString.mm",
122 "objc/helpers/RTCDispatcher+Private.h",
123 "objc/helpers/RTCDispatcher.h",
124 "objc/helpers/RTCDispatcher.m",
125 "objc/helpers/RTCUIApplicationStatusObserver.h",
126 "objc/helpers/RTCUIApplicationStatusObserver.m",
127 "objc/helpers/scoped_cftyperef.h",
128 ]
129
130 deps = [
131 ":base_objc",
132 "../rtc_base:checks",
133 ]
134
135 libs = [
136 "AVFoundation.framework",
137 "CoreMedia.framework",
138 ]
139
140 configs += [
141 "..:common_objc",
142 ":used_from_extension",
143 ]
144
145 public_configs = [ ":common_config_objc" ]
denicijad2088152017-04-28 09:14:54146
kjellander3bcedd32016-06-08 08:14:15147 if (is_ios) {
148 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29149 "objc/helpers/RTCCameraPreviewView.h",
150 "objc/helpers/RTCCameraPreviewView.m",
151 "objc/helpers/UIDevice+RTCDevice.h",
152 "objc/helpers/UIDevice+RTCDevice.mm",
153 ]
154 }
155 }
156
157 if (!build_with_chromium) {
158 rtc_static_library("callback_logger_objc") {
159 sources = [
160 "objc/api/logging/RTCCallbackLogger.h",
161 "objc/api/logging/RTCCallbackLogger.mm",
162 ]
163
164 deps = [
165 ":base_objc",
166 "../rtc_base:checks",
167 "../rtc_base:logging",
168 "../rtc_base:rtc_base",
169 ]
170
171 configs += [
172 "..:common_objc",
173 ":used_from_extension",
kjellander3bcedd32016-06-08 08:14:15174 ]
denicijad2088152017-04-28 09:14:54175 }
176
Anders Carlsson7bca8ca2018-08-30 07:30:29177 rtc_static_library("file_logger_objc") {
178 sources = [
179 "objc/api/peerconnection/RTCFileLogger.h",
180 "objc/api/peerconnection/RTCFileLogger.mm",
181 ]
182
183 deps = [
184 ":base_objc",
185 "../rtc_base:checks",
186 "../rtc_base:logging",
187 "../rtc_base:rtc_base",
188 ]
189
190 configs += [
191 "..:common_objc",
192 ":used_from_extension",
kthelgason2f088792017-05-30 08:48:47193 ]
194 }
195 }
196
mbonadei2c8ac1b2017-05-31 12:14:26197 if (!build_with_chromium) {
Kári Tristan Helgason99bf77c2018-02-16 09:49:22198 if (is_ios) {
Peter Hanspers8d95e3b2018-05-15 08:22:36199 rtc_static_library("native_api_audio_device_module") {
200 visibility = [ "*" ]
201
202 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29203 "objc/native/api/audio_device_module.h",
204 "objc/native/api/audio_device_module.mm",
Peter Hanspers8d95e3b2018-05-15 08:22:36205 ]
206
207 deps = [
208 ":audio_device",
209 "../modules/audio_device:audio_device_api",
210 "../modules/audio_device:audio_device_generic",
211 "../rtc_base:checks",
212 "../rtc_base:rtc_base_approved",
213 "../system_wrappers",
214 "../system_wrappers:metrics_api",
215 ]
216
217 if (is_clang) {
218 # Suppress warnings from the Chromium Clang plugin
219 # (bugs.webrtc.org/163).
220 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
221 }
222 }
223
224 rtc_source_set("audio_session_observer") {
225 visibility = [ ":*" ]
226
227 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29228 "objc/native/src/audio/audio_session_observer.h",
Peter Hanspers8d95e3b2018-05-15 08:22:36229 ]
230
231 deps = [
232 "../rtc_base:rtc_base",
233 ]
234 }
235
236 rtc_static_library("audio_device") {
237 visibility = [ "*" ]
238
239 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29240 "objc/native/src/audio/audio_device_ios.h",
241 "objc/native/src/audio/audio_device_ios.mm",
242 "objc/native/src/audio/audio_device_module_ios.h",
243 "objc/native/src/audio/audio_device_module_ios.mm",
244 "objc/native/src/audio/helpers.h",
245 "objc/native/src/audio/helpers.mm",
246 "objc/native/src/audio/voice_processing_audio_unit.h",
247 "objc/native/src/audio/voice_processing_audio_unit.mm",
Peter Hanspers8d95e3b2018-05-15 08:22:36248 ]
249
250 deps = [
251 ":audio_objc",
252 ":audio_session_observer",
Anders Carlsson7bca8ca2018-08-30 07:30:29253 ":base_objc",
Peter Hanspers8d95e3b2018-05-15 08:22:36254 "../api:array_view",
255 "../modules/audio_device:audio_device_api",
256 "../modules/audio_device:audio_device_buffer",
257 "../modules/audio_device:audio_device_generic",
258 "../rtc_base:checks",
259 "../rtc_base:rtc_base",
260 "../rtc_base/system:fallthrough",
Peter Hanspers8d95e3b2018-05-15 08:22:36261 "../system_wrappers:metrics_api",
262 ]
263
264 if (is_clang) {
265 # Suppress warnings from the Chromium Clang plugin
266 # (bugs.webrtc.org/163).
267 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
268 }
269 }
270
Kári Tristan Helgason99bf77c2018-02-16 09:49:22271 rtc_static_library("audio_objc") {
272 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29273 "objc/components/audio/RTCAudioSession+Configuration.mm",
274 "objc/components/audio/RTCAudioSession+Private.h",
275 "objc/components/audio/RTCAudioSession.h",
276 "objc/components/audio/RTCAudioSession.mm",
277 "objc/components/audio/RTCAudioSessionConfiguration.h",
278 "objc/components/audio/RTCAudioSessionConfiguration.m",
279 "objc/components/audio/RTCNativeAudioSessionDelegateAdapter.h",
280 "objc/components/audio/RTCNativeAudioSessionDelegateAdapter.mm",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22281 ]
Anders Carlsson358f2e02018-06-04 08:24:37282 configs += [
283 "..:common_objc",
284 ":used_from_extension",
285 ]
denicija59ee91b2017-06-05 12:48:47286
Kári Tristan Helgason99bf77c2018-02-16 09:49:22287 public_configs = [ ":common_config_objc" ]
Anders Carlsson8ecfd802017-09-15 12:07:30288
Kári Tristan Helgason99bf77c2018-02-16 09:49:22289 deps = [
Peter Hanspers8d95e3b2018-05-15 08:22:36290 ":audio_session_observer",
Anders Carlsson7bca8ca2018-08-30 07:30:29291 ":base_objc",
292 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22293 "../rtc_base:checks",
Peter Hanspers8d95e3b2018-05-15 08:22:36294 "../rtc_base:rtc_base",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22295 "../rtc_base:rtc_base_approved",
296 ]
denicija59ee91b2017-06-05 12:48:47297 }
298 }
zhihuanga4c113a2017-06-28 21:05:44299
Anders Carlsson9823ee42018-03-07 09:32:03300 rtc_static_library("videosource_objc") {
zhihuanga4c113a2017-06-28 21:05:44301 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29302 "objc/api/peerconnection/RTCVideoSource+Private.h",
303 "objc/api/peerconnection/RTCVideoSource.h",
304 "objc/api/peerconnection/RTCVideoSource.mm",
zhihuanga4c113a2017-06-28 21:05:44305 ]
306
307 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29308 ":base_objc",
Anders Carlsson9823ee42018-03-07 09:32:03309 ":mediasource_objc",
310 ":native_video",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22311 ":videoframebuffer_objc",
zhihuanga4c113a2017-06-28 21:05:44312 "../api:libjingle_peerconnection_api",
Niels Möllerc6ce9c52018-05-11 09:15:30313 "../api/video:video_frame",
314 "../api/video:video_frame_i420",
zhihuanga4c113a2017-06-28 21:05:44315 "../common_video",
316 "../media:rtc_media_base",
Patrik Höglunda8005cf2017-12-13 15:05:42317 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47318 "../rtc_base:rtc_base",
Mirko Bonadei401d0562017-12-14 10:24:00319 "//third_party/libyuv",
zhihuanga4c113a2017-06-28 21:05:44320 ]
321
Anders Carlsson358f2e02018-06-04 08:24:37322 configs += [
323 "..:common_objc",
324 ":used_from_extension",
325 ]
zhihuanga4c113a2017-06-28 21:05:44326 }
327
Kári Tristan Helgason99bf77c2018-02-16 09:49:22328 rtc_static_library("videoframebuffer_objc") {
Mirko Bonadei2ad8c432018-08-09 08:54:40329 visibility = [ "*" ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:22330 sources = [
Anders Carlsson4e5af962018-09-03 12:44:50331 "objc/api/video_frame_buffer/RTCNativeI420Buffer+Private.h",
332 "objc/api/video_frame_buffer/RTCNativeI420Buffer.h",
333 "objc/api/video_frame_buffer/RTCNativeI420Buffer.mm",
334 "objc/api/video_frame_buffer/RTCNativeMutableI420Buffer.h",
335 "objc/api/video_frame_buffer/RTCNativeMutableI420Buffer.mm",
Anders Carlsson7bca8ca2018-08-30 07:30:29336 "objc/components/video_frame_buffer/RTCCVPixelBuffer.h",
337 "objc/components/video_frame_buffer/RTCCVPixelBuffer.mm",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22338 ]
339 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29340 ":base_objc",
Niels Möllerc6ce9c52018-05-11 09:15:30341 "//api/video:video_frame",
342 "//api/video:video_frame_i420",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22343 "//common_video",
344 "//rtc_base:checks",
345 "//rtc_base:rtc_base_approved",
346 "//third_party/libyuv",
347 ]
Anders Carlsson358f2e02018-06-04 08:24:37348 configs += [
349 "..:common_objc",
350 ":used_from_extension",
351 ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:22352 }
353
kthelgason36d658d2017-08-24 12:43:45354 rtc_static_library("video_objc") {
kthelgason2f088792017-05-30 08:48:47355 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29356 "objc/components/renderer/opengl/RTCDefaultShader.h",
357 "objc/components/renderer/opengl/RTCDefaultShader.mm",
358 "objc/components/renderer/opengl/RTCI420TextureCache.h",
359 "objc/components/renderer/opengl/RTCI420TextureCache.mm",
360 "objc/components/renderer/opengl/RTCOpenGLDefines.h",
361 "objc/components/renderer/opengl/RTCShader.h",
362 "objc/components/renderer/opengl/RTCShader.mm",
363 "objc/components/renderer/opengl/RTCVideoViewShading.h",
kthelgason2f088792017-05-30 08:48:47364 ]
mbonadei2c8ac1b2017-05-31 12:14:26365 libs = []
denicijad2088152017-04-28 09:14:54366 if (is_ios) {
denicija070d5e32017-02-26 19:44:13367 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29368 "objc/components/renderer/opengl/RTCNV12TextureCache.h",
369 "objc/components/renderer/opengl/RTCNV12TextureCache.m",
mbonadei2c8ac1b2017-05-31 12:14:26370 ]
371 libs += [
372 "GLKit.framework",
373 "OpenGLES.framework",
374 "QuartzCore.framework",
375 ]
376 } else if (is_mac) {
mbonadei2c8ac1b2017-05-31 12:14:26377 libs += [
378 "CoreMedia.framework",
379 "CoreVideo.framework",
380 "OpenGL.framework",
denicija070d5e32017-02-26 19:44:13381 ]
382 }
mbonadei2c8ac1b2017-05-31 12:14:26383
kthelgason2f088792017-05-30 08:48:47384 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29385 ":base_objc",
386 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22387 ":mediaconstraints_objc",
Anders Carlsson3ff50fb2018-02-01 14:47:05388 ":native_video",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22389 ":videoframebuffer_objc",
Anders Carlsson9823ee42018-03-07 09:32:03390 ":videosource_objc",
mbonadei2c8ac1b2017-05-31 12:14:26391 "../api:libjingle_peerconnection_api",
Niels Möllerc6ce9c52018-05-11 09:15:30392 "../api/video:video_frame",
mbonadei2c8ac1b2017-05-31 12:14:26393 "../common_video",
394 "../media:rtc_media_base",
Patrik Höglunda8005cf2017-12-13 15:05:42395 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47396 "../rtc_base:rtc_base",
Danil Chapovalov196100e2018-06-21 08:17:24397 "//third_party/abseil-cpp/absl/types:optional",
tkchin9eeb6242016-04-27 08:54:20398 ]
mbonadei2c8ac1b2017-05-31 12:14:26399
Anders Carlsson358f2e02018-06-04 08:24:37400 configs += [
401 "..:common_objc",
402 ":used_from_extension",
403 ]
ehmaldonadoda8dcfb2017-01-04 15:11:23404 }
ehmaldonadoda8dcfb2017-01-04 15:11:23405
kthelgason36d658d2017-08-24 12:43:45406 rtc_static_library("ui_objc") {
Per Kjellandera7f2d842018-01-10 15:54:53407 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05408 allow_poison = [
409 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
410 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
411 ]
mbonadei2c8ac1b2017-05-31 12:14:26412 if (is_ios) {
413 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29414 "objc/components/renderer/opengl/RTCDisplayLinkTimer.h",
415 "objc/components/renderer/opengl/RTCDisplayLinkTimer.m",
416 "objc/components/renderer/opengl/RTCEAGLVideoView.h",
417 "objc/components/renderer/opengl/RTCEAGLVideoView.m",
mbonadei2c8ac1b2017-05-31 12:14:26418 ]
419 }
420 if (is_mac) {
421 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29422 "objc/components/renderer/opengl/RTCNSGLVideoView.h",
423 "objc/components/renderer/opengl/RTCNSGLVideoView.m",
mbonadei2c8ac1b2017-05-31 12:14:26424 ]
425 }
426 configs += [ "..:common_objc" ]
427 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29428 ":base_objc",
429 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22430 ":video_objc",
431 ":videocapture_objc",
432 ":videoframebuffer_objc",
mbonadei2c8ac1b2017-05-31 12:14:26433 ]
434 }
kthelgasonebc34e72016-09-15 11:30:18435
mbonadei2c8ac1b2017-05-31 12:14:26436 if (rtc_use_metal_rendering) {
kthelgason36d658d2017-08-24 12:43:45437 rtc_static_library("metal_objc") {
Mirko Bonadeid68956d2018-02-16 16:55:36438 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05439 allow_poison = [
440 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
441 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
442 ]
mbonadei2c8ac1b2017-05-31 12:14:26443 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29444 "objc/components/renderer/metal/RTCMTLI420Renderer.h",
445 "objc/components/renderer/metal/RTCMTLI420Renderer.mm",
446 "objc/components/renderer/metal/RTCMTLRenderer+Private.h",
447 "objc/components/renderer/metal/RTCMTLRenderer.h",
448 "objc/components/renderer/metal/RTCMTLRenderer.mm",
mbonadei2c8ac1b2017-05-31 12:14:26449 ]
450 if (is_ios) {
451 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29452 "objc/components/renderer/metal/RTCMTLNV12Renderer.h",
453 "objc/components/renderer/metal/RTCMTLNV12Renderer.mm",
454 "objc/components/renderer/metal/RTCMTLRGBRenderer.h",
455 "objc/components/renderer/metal/RTCMTLRGBRenderer.mm",
456 "objc/components/renderer/metal/RTCMTLVideoView.h",
457 "objc/components/renderer/metal/RTCMTLVideoView.m",
mbonadei2c8ac1b2017-05-31 12:14:26458 ]
459 }
460 if (is_mac) {
461 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29462 "objc/components/renderer/metal/RTCMTLNSVideoView.h",
463 "objc/components/renderer/metal/RTCMTLNSVideoView.m",
mbonadei2c8ac1b2017-05-31 12:14:26464 ]
465 }
466 libs = [
467 "CoreVideo.framework",
468 "Metal.framework",
469 "MetalKit.framework",
470 ]
471 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29472 ":base_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22473 ":peerconnectionfactory_base_objc",
kthelgason36d658d2017-08-24 12:43:45474 ":video_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22475 ":videoframebuffer_objc",
Niels Möllerc6ce9c52018-05-11 09:15:30476 "../api/video:video_frame",
Patrik Höglunda8005cf2017-12-13 15:05:42477 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47478 "../rtc_base:rtc_base_approved",
mbonadei2c8ac1b2017-05-31 12:14:26479 ]
480 configs += [ "..:common_objc" ]
kthelgason36d658d2017-08-24 12:43:45481 public_configs = [ ":common_config_objc" ]
mbonadei2c8ac1b2017-05-31 12:14:26482 }
483 }
484
Anders Carlsson7bca8ca2018-08-30 07:30:29485 # TODO(bugs.webrtc.org/9627): Remove this target.
Anders Carlsson73119182018-03-15 08:41:03486 rtc_static_library("videocapturebase_objc") {
487 visibility = [ "*" ]
488 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29489 "objc/helpers/noop.mm",
Anders Carlsson73119182018-03-15 08:41:03490 ]
Anders Carlsson73119182018-03-15 08:41:03491
492 configs += [ "..:common_objc" ]
493
494 public_configs = [ ":common_config_objc" ]
495
496 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29497 ":base_objc",
Anders Carlsson73119182018-03-15 08:41:03498 ":videoframebuffer_objc",
499 ]
500 }
501
Kári Tristan Helgason99bf77c2018-02-16 09:49:22502 rtc_static_library("videocapture_objc") {
Per Kjellandera7f2d842018-01-10 15:54:53503 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05504 allow_poison = [
505 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
506 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
507 ]
mbonadei2c8ac1b2017-05-31 12:14:26508 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29509 "objc/components/capturer/RTCCameraVideoCapturer.h",
510 "objc/components/capturer/RTCCameraVideoCapturer.m",
zhihuanga4c113a2017-06-28 21:05:44511 ]
512 if (is_ios) {
513 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29514 "objc/components/capturer/RTCFileVideoCapturer.h",
515 "objc/components/capturer/RTCFileVideoCapturer.m",
zhihuanga4c113a2017-06-28 21:05:44516 ]
517 }
518 libs = [ "AVFoundation.framework" ]
519
zhihuanga4c113a2017-06-28 21:05:44520 configs += [ "..:common_objc" ]
521
kthelgason36d658d2017-08-24 12:43:45522 public_configs = [ ":common_config_objc" ]
zhihuanga4c113a2017-06-28 21:05:44523
zhihuanga4c113a2017-06-28 21:05:44524 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29525 ":base_objc",
526 ":helpers_objc",
kthelgason36d658d2017-08-24 12:43:45527 ":video_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22528 ":videoframebuffer_objc",
zhihuanga4c113a2017-06-28 21:05:44529 ]
zhihuanga4c113a2017-06-28 21:05:44530 }
531
Kári Tristan Helgason99bf77c2018-02-16 09:49:22532 rtc_static_library("videocodec_objc") {
Karl Wibergbb23c832018-04-22 17:55:00533 visibility = [ "*" ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:22534 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29535 "objc/components/video_codec/RTCCodecSpecificInfoH264+Private.h",
536 "objc/components/video_codec/RTCCodecSpecificInfoH264.h",
537 "objc/components/video_codec/RTCCodecSpecificInfoH264.mm",
538 "objc/components/video_codec/RTCH264ProfileLevelId.h",
539 "objc/components/video_codec/RTCH264ProfileLevelId.mm",
zhihuanga4c113a2017-06-28 21:05:44540 ]
Yura Yaroshevich0f77fea2018-04-26 12:41:01541 if (is_ios) {
542 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:29543 "objc/components/video_codec/UIDevice+H264Profile.h",
544 "objc/components/video_codec/UIDevice+H264Profile.mm",
Yura Yaroshevich0f77fea2018-04-26 12:41:01545 ]
546 }
zhihuanga4c113a2017-06-28 21:05:44547 if (!build_with_chromium && is_clang) {
548 # Suppress warnings from the Chromium Clang plugin
549 # (bugs.webrtc.org/163).
550 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
551 }
Kári Tristan Helgason99bf77c2018-02-16 09:49:22552 public_configs = [ ":common_config_objc" ]
553 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29554 ":base_objc",
555 ":helpers_objc",
kthelgasonfb143122017-07-25 14:55:58556 "../api/video_codecs:video_codecs_api",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22557 "../common_video",
Yura Yaroshevich0f77fea2018-04-26 12:41:01558 "../media:rtc_h264_profile_id",
zhihuanga4c113a2017-06-28 21:05:44559 "../media:rtc_media_base",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22560 "../modules:module_api",
561 "../modules/video_coding:video_codec_interface",
Anders Carlsson7bca8ca2018-08-30 07:30:29562 "../rtc_base:checks",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22563 "../rtc_base:rtc_base_approved",
kthelgasonfb143122017-07-25 14:55:58564 "../system_wrappers:field_trial_api",
zhihuanga4c113a2017-06-28 21:05:44565 ]
566 }
567
Anders Carlssondd8c1652018-01-30 09:32:13568 rtc_static_library("default_codec_factory_objc") {
569 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29570 "objc/components/video_codec/RTCDefaultVideoDecoderFactory.h",
571 "objc/components/video_codec/RTCDefaultVideoDecoderFactory.m",
572 "objc/components/video_codec/RTCDefaultVideoEncoderFactory.h",
573 "objc/components/video_codec/RTCDefaultVideoEncoderFactory.m",
Anders Carlssondd8c1652018-01-30 09:32:13574 ]
575
576 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29577 ":base_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22578 ":native_video",
579 ":videocodec_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:29580 ":videotoolbox_objc",
Magnus Jedvert8b4e92d2018-04-13 13:36:43581 ":vp8",
582 ":vp9",
Anders Carlsson7bca8ca2018-08-30 07:30:29583 ":vpx_codec_constants",
584 ]
585 }
586
587 rtc_static_library("vpx_codec_constants") {
588 sources = [
589 "objc/api/video_codec/RTCVideoCodecConstants.h",
590 "objc/api/video_codec/RTCVideoCodecConstants.mm",
591 ]
592
593 deps = [
594 ":base_objc",
595 "../media:rtc_media_base",
Anders Carlssondd8c1652018-01-30 09:32:13596 ]
Anders Carlssondd8c1652018-01-30 09:32:13597 }
598
599 rtc_static_library("vp8") {
Kári Tristan Helgason99bf77c2018-02-16 09:49:22600 visibility = [ "*" ]
Karl Wiberg7ba22b82018-04-27 02:31:53601 allow_poison = [ "software_video_codecs" ]
Anders Carlssondd8c1652018-01-30 09:32:13602 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29603 "objc/api/video_codec/RTCVideoDecoderVP8.h",
604 "objc/api/video_codec/RTCVideoDecoderVP8.mm",
605 "objc/api/video_codec/RTCVideoEncoderVP8.h",
606 "objc/api/video_codec/RTCVideoEncoderVP8.mm",
Anders Carlssondd8c1652018-01-30 09:32:13607 ]
608
Anders Carlssondd8c1652018-01-30 09:32:13609 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29610 ":base_objc",
Anders Carlsson9823ee42018-03-07 09:32:03611 ":wrapped_native_codec_objc",
Anders Carlssondd8c1652018-01-30 09:32:13612 "../modules/video_coding:webrtc_vp8",
613 "../system_wrappers:metrics_default",
614 ]
615 }
616
617 rtc_static_library("vp9") {
Kári Tristan Helgason99bf77c2018-02-16 09:49:22618 visibility = [ "*" ]
Karl Wiberg7ba22b82018-04-27 02:31:53619 allow_poison = [ "software_video_codecs" ]
Anders Carlssondd8c1652018-01-30 09:32:13620 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29621 "objc/api/video_codec/RTCVideoDecoderVP9.h",
622 "objc/api/video_codec/RTCVideoDecoderVP9.mm",
623 "objc/api/video_codec/RTCVideoEncoderVP9.h",
624 "objc/api/video_codec/RTCVideoEncoderVP9.mm",
Anders Carlssondd8c1652018-01-30 09:32:13625 ]
626
Anders Carlssondd8c1652018-01-30 09:32:13627 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29628 ":base_objc",
Anders Carlsson9823ee42018-03-07 09:32:03629 ":wrapped_native_codec_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:29630 "../media:rtc_media_base",
Anders Carlssondd8c1652018-01-30 09:32:13631 "../modules/video_coding:webrtc_vp9",
632 "../system_wrappers:metrics_default",
633 ]
634 }
635
zhihuanga4c113a2017-06-28 21:05:44636 # Build the PeerConnectionFactory without audio/video support.
637 # This target depends on the objc_peeerconnectionfactory_base which still
638 # includes some audio/video related objects such as RTCAudioSource because
639 # these objects are just thin wrappers of native C++ interfaces required
640 # when implementing webrtc::PeerConnectionFactoryInterface and
641 # webrtc::PeerConnectionInterface.
Kári Tristan Helgasona2d89fc2018-03-06 09:18:43642 # The applications which only use WebRTC DataChannel can depend on this.
kthelgason36d658d2017-08-24 12:43:45643 rtc_static_library("peerconnectionfactory_no_media_objc") {
Per Kjellandera7f2d842018-01-10 15:54:53644 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05645 allow_poison = [
646 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
647 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
648 ]
zhihuanga4c113a2017-06-28 21:05:44649 defines = [ "HAVE_NO_MEDIA" ]
650
651 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29652 "objc/helpers/noop.mm",
zhihuanga4c113a2017-06-28 21:05:44653 ]
654
kthelgason36d658d2017-08-24 12:43:45655 public_configs = [ ":common_config_objc" ]
zhihuanga4c113a2017-06-28 21:05:44656
zhihuanga4c113a2017-06-28 21:05:44657 deps = [
Anders Carlsson3ff50fb2018-02-01 14:47:05658 ":native_api",
659 ":native_video",
kthelgason36d658d2017-08-24 12:43:45660 ":peerconnectionfactory_base_objc",
zhihuanga4c113a2017-06-28 21:05:44661 "../api:libjingle_peerconnection_api",
ehmaldonadof6a861a2017-07-19 17:40:47662 "../rtc_base:rtc_base",
zhihuanga4c113a2017-06-28 21:05:44663 ]
664 }
665
Kári Tristan Helgason99bf77c2018-02-16 09:49:22666 rtc_static_library("mediaconstraints_objc") {
667 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29668 "objc/api/peerconnection/RTCMediaConstraints+Private.h",
669 "objc/api/peerconnection/RTCMediaConstraints.h",
670 "objc/api/peerconnection/RTCMediaConstraints.mm",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22671 ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:22672
673 public_configs = [ ":common_config_objc" ]
674 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29675 ":base_objc",
676 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22677 "../api:libjingle_peerconnection_api",
678 ]
679 }
680
Anders Carlsson7bca8ca2018-08-30 07:30:29681 # TODO(bugs.webrtc.org/9627): Remove, targets should depend on base_objc.
Anders Carlsson9823ee42018-03-07 09:32:03682 rtc_source_set("videorenderer_objc") {
Anders Carlsson7bca8ca2018-08-30 07:30:29683 visibility = [ "*" ]
Anders Carlsson9823ee42018-03-07 09:32:03684 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29685 "objc/helpers/noop.mm",
Anders Carlsson9823ee42018-03-07 09:32:03686 ]
687
688 configs += [ "..:common_objc" ]
Anders Carlsson9823ee42018-03-07 09:32:03689 public_configs = [ ":common_config_objc" ]
Anders Carlsson7bca8ca2018-08-30 07:30:29690
691 deps = [
692 ":base_objc",
693 ]
Anders Carlsson9823ee42018-03-07 09:32:03694 }
695
696 rtc_static_library("videorendereradapter_objc") {
Karl Wibergbb23c832018-04-22 17:55:00697 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05698 allow_poison = [
699 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
700 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
701 ]
Anders Carlsson9823ee42018-03-07 09:32:03702 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29703 "objc/api/RTCVideoRendererAdapter+Private.h",
704 "objc/api/RTCVideoRendererAdapter.h",
705 "objc/api/RTCVideoRendererAdapter.mm",
Anders Carlsson9823ee42018-03-07 09:32:03706 ]
707
708 configs += [ "..:common_objc" ]
Anders Carlsson9823ee42018-03-07 09:32:03709 public_configs = [ ":common_config_objc" ]
710
711 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29712 ":base_objc",
Anders Carlsson9823ee42018-03-07 09:32:03713 ":native_api",
714 ":videoframebuffer_objc",
Anders Carlsson9823ee42018-03-07 09:32:03715 "../api:libjingle_peerconnection_api",
716 ]
717 }
718
719 rtc_static_library("mediasource_objc") {
720 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29721 "objc/api/peerconnection/RTCMediaSource+Private.h",
722 "objc/api/peerconnection/RTCMediaSource.h",
723 "objc/api/peerconnection/RTCMediaSource.mm",
Anders Carlsson9823ee42018-03-07 09:32:03724 ]
725
Anders Carlsson358f2e02018-06-04 08:24:37726 configs += [
727 "..:common_objc",
728 ":used_from_extension",
729 ]
Anders Carlsson9823ee42018-03-07 09:32:03730 public_configs = [ ":common_config_objc" ]
731
732 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29733 ":base_objc",
Anders Carlsson9823ee42018-03-07 09:32:03734 "../api:libjingle_peerconnection_api",
735 "../rtc_base:checks",
736 ]
737 }
738
Anders Carlsson7bca8ca2018-08-30 07:30:29739 rtc_static_library("base_native_additions_objc") {
740 sources = [
741 "objc/api/peerconnection/RTCEncodedImage+Private.h",
742 "objc/api/peerconnection/RTCEncodedImage+Private.mm",
743 "objc/api/peerconnection/RTCRtpFragmentationHeader+Private.h",
744 "objc/api/peerconnection/RTCRtpFragmentationHeader+Private.mm",
745 "objc/api/peerconnection/RTCVideoCodecInfo+Private.h",
746 "objc/api/peerconnection/RTCVideoCodecInfo+Private.mm",
747 "objc/api/peerconnection/RTCVideoEncoderSettings+Private.h",
748 "objc/api/peerconnection/RTCVideoEncoderSettings+Private.mm",
749 ]
750
751 configs += [ "..:common_objc" ]
752
753 public_configs = [ ":common_config_objc" ]
754
755 deps = [
756 ":base_objc",
757 ":helpers_objc",
758 "../api/video_codecs:video_codecs_api",
759 "../common_video",
760 "../modules:module_api",
761 "../modules/video_coding:video_codec_interface",
762 "../rtc_base:rtc_base",
763 ]
764
765 if (!build_with_chromium && is_clang) {
766 # Suppress warnings from the Chromium Clang plugin
767 # (bugs.webrtc.org/163).
768 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
769 }
770 }
771
kthelgason36d658d2017-08-24 12:43:45772 rtc_static_library("peerconnectionfactory_base_objc") {
Karl Wibergbb23c832018-04-22 17:55:00773 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:05774 allow_poison = [
775 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
776 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
777 ]
zhihuanga4c113a2017-06-28 21:05:44778 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:29779 "objc/api/peerconnection/RTCAudioSource+Private.h",
780 "objc/api/peerconnection/RTCAudioSource.h",
781 "objc/api/peerconnection/RTCAudioSource.mm",
782 "objc/api/peerconnection/RTCAudioTrack+Private.h",
783 "objc/api/peerconnection/RTCAudioTrack.h",
784 "objc/api/peerconnection/RTCAudioTrack.mm",
785 "objc/api/peerconnection/RTCCertificate.h",
786 "objc/api/peerconnection/RTCCertificate.mm",
787 "objc/api/peerconnection/RTCConfiguration+Native.h",
788 "objc/api/peerconnection/RTCConfiguration+Private.h",
789 "objc/api/peerconnection/RTCConfiguration.h",
790 "objc/api/peerconnection/RTCConfiguration.mm",
791 "objc/api/peerconnection/RTCDataChannel+Private.h",
792 "objc/api/peerconnection/RTCDataChannel.h",
793 "objc/api/peerconnection/RTCDataChannel.mm",
794 "objc/api/peerconnection/RTCDataChannelConfiguration+Private.h",
795 "objc/api/peerconnection/RTCDataChannelConfiguration.h",
796 "objc/api/peerconnection/RTCDataChannelConfiguration.mm",
797 "objc/api/peerconnection/RTCDtmfSender+Private.h",
798 "objc/api/peerconnection/RTCDtmfSender.h",
799 "objc/api/peerconnection/RTCDtmfSender.mm",
800 "objc/api/peerconnection/RTCFieldTrials.h",
801 "objc/api/peerconnection/RTCFieldTrials.mm",
802 "objc/api/peerconnection/RTCIceCandidate+Private.h",
803 "objc/api/peerconnection/RTCIceCandidate.h",
804 "objc/api/peerconnection/RTCIceCandidate.mm",
805 "objc/api/peerconnection/RTCIceServer+Private.h",
806 "objc/api/peerconnection/RTCIceServer.h",
807 "objc/api/peerconnection/RTCIceServer.mm",
808 "objc/api/peerconnection/RTCIntervalRange+Private.h",
809 "objc/api/peerconnection/RTCIntervalRange.h",
810 "objc/api/peerconnection/RTCIntervalRange.mm",
811 "objc/api/peerconnection/RTCLegacyStatsReport+Private.h",
812 "objc/api/peerconnection/RTCLegacyStatsReport.h",
813 "objc/api/peerconnection/RTCLegacyStatsReport.mm",
814 "objc/api/peerconnection/RTCMediaStream+Private.h",
815 "objc/api/peerconnection/RTCMediaStream.h",
816 "objc/api/peerconnection/RTCMediaStream.mm",
817 "objc/api/peerconnection/RTCMediaStreamTrack+Private.h",
818 "objc/api/peerconnection/RTCMediaStreamTrack.h",
819 "objc/api/peerconnection/RTCMediaStreamTrack.mm",
820 "objc/api/peerconnection/RTCMetrics.h",
821 "objc/api/peerconnection/RTCMetrics.mm",
822 "objc/api/peerconnection/RTCMetricsSampleInfo+Private.h",
823 "objc/api/peerconnection/RTCMetricsSampleInfo.h",
824 "objc/api/peerconnection/RTCMetricsSampleInfo.mm",
825 "objc/api/peerconnection/RTCPeerConnection+DataChannel.mm",
826 "objc/api/peerconnection/RTCPeerConnection+Native.h",
827 "objc/api/peerconnection/RTCPeerConnection+Private.h",
828 "objc/api/peerconnection/RTCPeerConnection+Stats.mm",
829 "objc/api/peerconnection/RTCPeerConnection.h",
830 "objc/api/peerconnection/RTCPeerConnection.mm",
831 "objc/api/peerconnection/RTCPeerConnectionFactory+Native.h",
832 "objc/api/peerconnection/RTCPeerConnectionFactory+Private.h",
833 "objc/api/peerconnection/RTCPeerConnectionFactory.h",
834 "objc/api/peerconnection/RTCPeerConnectionFactory.mm",
835 "objc/api/peerconnection/RTCPeerConnectionFactoryBuilder+DefaultComponents.h",
836 "objc/api/peerconnection/RTCPeerConnectionFactoryBuilder+DefaultComponents.mm",
837 "objc/api/peerconnection/RTCPeerConnectionFactoryBuilder.h",
838 "objc/api/peerconnection/RTCPeerConnectionFactoryBuilder.mm",
839 "objc/api/peerconnection/RTCPeerConnectionFactoryOptions+Private.h",
840 "objc/api/peerconnection/RTCPeerConnectionFactoryOptions.h",
841 "objc/api/peerconnection/RTCPeerConnectionFactoryOptions.mm",
842 "objc/api/peerconnection/RTCRtcpParameters+Private.h",
843 "objc/api/peerconnection/RTCRtcpParameters.h",
844 "objc/api/peerconnection/RTCRtcpParameters.mm",
845 "objc/api/peerconnection/RTCRtpCodecParameters+Private.h",
846 "objc/api/peerconnection/RTCRtpCodecParameters.h",
847 "objc/api/peerconnection/RTCRtpCodecParameters.mm",
848 "objc/api/peerconnection/RTCRtpEncodingParameters+Private.h",
849 "objc/api/peerconnection/RTCRtpEncodingParameters.h",
850 "objc/api/peerconnection/RTCRtpEncodingParameters.mm",
851 "objc/api/peerconnection/RTCRtpHeaderExtension+Private.h",
852 "objc/api/peerconnection/RTCRtpHeaderExtension.h",
853 "objc/api/peerconnection/RTCRtpHeaderExtension.mm",
854 "objc/api/peerconnection/RTCRtpParameters+Private.h",
855 "objc/api/peerconnection/RTCRtpParameters.h",
856 "objc/api/peerconnection/RTCRtpParameters.mm",
857 "objc/api/peerconnection/RTCRtpReceiver+Private.h",
858 "objc/api/peerconnection/RTCRtpReceiver.h",
859 "objc/api/peerconnection/RTCRtpReceiver.mm",
860 "objc/api/peerconnection/RTCRtpSender+Private.h",
861 "objc/api/peerconnection/RTCRtpSender.h",
862 "objc/api/peerconnection/RTCRtpSender.mm",
863 "objc/api/peerconnection/RTCRtpTransceiver+Private.h",
864 "objc/api/peerconnection/RTCRtpTransceiver.h",
865 "objc/api/peerconnection/RTCRtpTransceiver.mm",
866 "objc/api/peerconnection/RTCSSLAdapter.h",
867 "objc/api/peerconnection/RTCSSLAdapter.mm",
868 "objc/api/peerconnection/RTCSessionDescription+Private.h",
869 "objc/api/peerconnection/RTCSessionDescription.h",
870 "objc/api/peerconnection/RTCSessionDescription.mm",
871 "objc/api/peerconnection/RTCTracing.h",
872 "objc/api/peerconnection/RTCTracing.mm",
873 "objc/api/peerconnection/RTCVideoTrack+Private.h",
874 "objc/api/peerconnection/RTCVideoTrack.h",
875 "objc/api/peerconnection/RTCVideoTrack.mm",
kthelgason5fe4d492016-12-05 19:27:30876 ]
kthelgasonebc34e72016-09-15 11:30:18877
Anders Carlsson358f2e02018-06-04 08:24:37878 configs += [
879 "..:common_objc",
880 ":used_from_extension",
881 ]
kthelgason36d658d2017-08-24 12:43:45882 public_configs = [ ":common_config_objc" ]
kthelgasonc0977102017-04-24 07:57:16883
mbonadei2c8ac1b2017-05-31 12:14:26884 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:29885 ":base_native_additions_objc",
886 ":base_objc",
887 ":file_logger_objc",
888 ":helpers_objc",
889 ":legacy_header_paths",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22890 ":mediaconstraints_objc",
Anders Carlsson9823ee42018-03-07 09:32:03891 ":mediasource_objc",
Anders Carlsson3ff50fb2018-02-01 14:47:05892 ":native_api",
893 ":native_video",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22894 ":video_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22895 ":videoframebuffer_objc",
Anders Carlsson9823ee42018-03-07 09:32:03896 ":videorendereradapter_objc",
897 ":videosource_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:29898 ":videotoolbox_objc",
Mirko Bonadeie51f7852017-12-06 10:23:19899 "../api:libjingle_peerconnection_api",
Jiawei Ouae810c12018-06-20 23:18:59900 "../api/audio_codecs:audio_codecs_api",
Karl Wiberg5817d3d2018-04-06 08:06:42901 "../api/audio_codecs:builtin_audio_decoder_factory",
Jiawei Ouae810c12018-06-20 23:18:59902 "../api/audio_codecs:builtin_audio_encoder_factory",
Niels Möllerc6ce9c52018-05-11 09:15:30903 "../api/video:video_frame",
Anders Carlsson7e042812017-10-05 14:55:38904 "../api/video_codecs:video_codecs_api",
Anders Carlssone5960ce2017-06-22 13:26:30905 "../common_video",
mbonadei2c8ac1b2017-05-31 12:14:26906 "../media:rtc_media_base",
kthelgasonfb143122017-07-25 14:55:58907 "../modules:module_api",
Jiawei Ouae810c12018-06-20 23:18:59908 "../modules/audio_device:audio_device_api",
909 "../modules/audio_processing:audio_processing",
Patrik Höglund99175c62018-01-08 10:05:10910 "../modules/video_coding:video_codec_interface",
Kári Tristan Helgason99bf77c2018-02-16 09:49:22911 "../pc:create_pc_factory",
zhihuanga4c113a2017-06-28 21:05:44912 "../pc:peerconnection",
Patrik Höglunda8005cf2017-12-13 15:05:42913 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47914 "../rtc_base:rtc_base",
Mirko Bonadei879f7882018-07-11 07:18:37915 "//third_party/abseil-cpp/absl/memory",
mbonadei2c8ac1b2017-05-31 12:14:26916 ]
Peter Hanspers8d95e3b2018-05-15 08:22:36917
918 if (is_ios) {
919 deps += [ ":native_api_audio_device_module" ]
920 }
kthelgasonebc34e72016-09-15 11:30:18921 }
Zeke Chindd0e1e02016-10-11 20:27:26922
Anders Carlsson7bca8ca2018-08-30 07:30:29923 # TODO(bugs.webrtc.org/9627): Remove this target.
924 rtc_source_set("legacy_header_paths") {
925 sources = [
926 "objc/Framework/Classes/Common/NSString+StdString.h",
927 "objc/Framework/Classes/Common/RTCUIApplicationStatusObserver.h",
928 "objc/Framework/Classes/Common/scoped_cftyperef.h",
929 "objc/Framework/Classes/PeerConnection/RTCConfiguration+Native.h",
930 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+Native.h",
931 "objc/Framework/Classes/PeerConnection/RTCPeerConnectionFactory+Native.h",
932 "objc/Framework/Classes/PeerConnection/RTCVideoCodec+Private.h",
933 "objc/Framework/Classes/Video/RTCDefaultShader.h",
934 "objc/Framework/Classes/Video/RTCNV12TextureCache.h",
935 "objc/Framework/Classes/VideoToolbox/nalu_rewriter.h",
936 "objc/Framework/Headers/WebRTC/RTCAudioSession.h",
937 "objc/Framework/Headers/WebRTC/RTCAudioSessionConfiguration.h",
938 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
939 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h",
940 "objc/Framework/Headers/WebRTC/RTCCVPixelBuffer.h",
941 "objc/Framework/Headers/WebRTC/RTCCallbackLogger.h",
942 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h",
943 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h",
944 "objc/Framework/Headers/WebRTC/RTCCertificate.h",
945 "objc/Framework/Headers/WebRTC/RTCConfiguration.h",
946 "objc/Framework/Headers/WebRTC/RTCDataChannel.h",
947 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h",
948 "objc/Framework/Headers/WebRTC/RTCDefaultVideoDecoderFactory.h",
949 "objc/Framework/Headers/WebRTC/RTCDefaultVideoEncoderFactory.h",
950 "objc/Framework/Headers/WebRTC/RTCDispatcher.h",
951 "objc/Framework/Headers/WebRTC/RTCDtmfSender.h",
952 "objc/Framework/Headers/WebRTC/RTCEAGLVideoView.h",
953 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h",
954 "objc/Framework/Headers/WebRTC/RTCFileLogger.h",
955 "objc/Framework/Headers/WebRTC/RTCFileVideoCapturer.h",
956 "objc/Framework/Headers/WebRTC/RTCH264ProfileLevelId.h",
957 "objc/Framework/Headers/WebRTC/RTCIceCandidate.h",
958 "objc/Framework/Headers/WebRTC/RTCIceServer.h",
959 "objc/Framework/Headers/WebRTC/RTCIntervalRange.h",
960 "objc/Framework/Headers/WebRTC/RTCLegacyStatsReport.h",
961 "objc/Framework/Headers/WebRTC/RTCLogging.h",
962 "objc/Framework/Headers/WebRTC/RTCMTLNSVideoView.h",
963 "objc/Framework/Headers/WebRTC/RTCMTLVideoView.h",
964 "objc/Framework/Headers/WebRTC/RTCMacros.h",
965 "objc/Framework/Headers/WebRTC/RTCMediaConstraints.h",
966 "objc/Framework/Headers/WebRTC/RTCMediaSource.h",
967 "objc/Framework/Headers/WebRTC/RTCMediaStream.h",
968 "objc/Framework/Headers/WebRTC/RTCMediaStreamTrack.h",
969 "objc/Framework/Headers/WebRTC/RTCMetrics.h",
970 "objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h",
971 "objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h",
972 "objc/Framework/Headers/WebRTC/RTCPeerConnection.h",
973 "objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h",
974 "objc/Framework/Headers/WebRTC/RTCPeerConnectionFactoryOptions.h",
975 "objc/Framework/Headers/WebRTC/RTCRtcpParameters.h",
976 "objc/Framework/Headers/WebRTC/RTCRtpCodecParameters.h",
977 "objc/Framework/Headers/WebRTC/RTCRtpEncodingParameters.h",
978 "objc/Framework/Headers/WebRTC/RTCRtpHeaderExtension.h",
979 "objc/Framework/Headers/WebRTC/RTCRtpParameters.h",
980 "objc/Framework/Headers/WebRTC/RTCRtpReceiver.h",
981 "objc/Framework/Headers/WebRTC/RTCRtpSender.h",
982 "objc/Framework/Headers/WebRTC/RTCRtpTransceiver.h",
983 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h",
984 "objc/Framework/Headers/WebRTC/RTCSessionDescription.h",
985 "objc/Framework/Headers/WebRTC/RTCTracing.h",
986 "objc/Framework/Headers/WebRTC/RTCVideoCapturer.h",
987 "objc/Framework/Headers/WebRTC/RTCVideoCodec.h",
988 "objc/Framework/Headers/WebRTC/RTCVideoCodecFactory.h",
989 "objc/Framework/Headers/WebRTC/RTCVideoCodecH264.h",
990 "objc/Framework/Headers/WebRTC/RTCVideoCodecInfo.h",
991 "objc/Framework/Headers/WebRTC/RTCVideoDecoderVP8.h",
992 "objc/Framework/Headers/WebRTC/RTCVideoDecoderVP9.h",
993 "objc/Framework/Headers/WebRTC/RTCVideoEncoderVP8.h",
994 "objc/Framework/Headers/WebRTC/RTCVideoEncoderVP9.h",
995 "objc/Framework/Headers/WebRTC/RTCVideoFrame.h",
996 "objc/Framework/Headers/WebRTC/RTCVideoFrameBuffer.h",
997 "objc/Framework/Headers/WebRTC/RTCVideoRenderer.h",
998 "objc/Framework/Headers/WebRTC/RTCVideoSource.h",
999 "objc/Framework/Headers/WebRTC/RTCVideoTrack.h",
1000 "objc/Framework/Headers/WebRTC/RTCVideoViewShading.h",
1001 "objc/Framework/Headers/WebRTC/UIDevice+RTCDevice.h",
1002 "objc/Framework/Native/api/audio_device_module.h",
1003 "objc/Framework/Native/api/video_decoder_factory.h",
1004 "objc/Framework/Native/api/video_encoder_factory.h",
1005 "objc/Framework/Native/api/video_frame_buffer.h",
1006 "objc/Framework/Native/src/objc_video_decoder_factory.h",
1007 "objc/Framework/Native/src/objc_video_encoder_factory.h",
1008 ]
1009 }
1010
mbonadei2c8ac1b2017-05-31 12:14:261011 if (rtc_include_tests) {
Daniela012b56b2017-11-15 12:15:241012 if (is_ios) {
Danielaae012cf2017-10-12 11:46:001013 rtc_source_set("sdk_unittests_sources") {
1014 testonly = true
Anders Carlsson7bca8ca2018-08-30 07:30:291015 include_dirs = [ "objc/" ]
Daniela012b56b2017-11-15 12:15:241016
Danielaae012cf2017-10-12 11:46:001017 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291018 "objc/unittests/ObjCVideoTrackSource_xctest.mm",
1019 "objc/unittests/RTCCVPixelBuffer_xctest.mm",
1020 "objc/unittests/RTCCallbackLogger_xctest.m",
1021 "objc/unittests/RTCFileVideoCapturer_xctest.mm",
1022 "objc/unittests/RTCH264ProfileLevelId_xctest.m",
1023 "objc/unittests/RTCPeerConnectionFactory_xctest.m",
1024 "objc/unittests/frame_buffer_helpers.h",
1025 "objc/unittests/frame_buffer_helpers.mm",
Danielaae012cf2017-10-12 11:46:001026 ]
Daniela012b56b2017-11-15 12:15:241027
Peter Hanspers8d95e3b2018-05-15 08:22:361028 # TODO(peterhanspers): Reenable these tests on simulator.
1029 # See bugs.webrtc.org/7812
1030 if (!use_ios_simulator) {
1031 sources += [
Anders Carlsson7bca8ca2018-08-30 07:30:291032 "objc/unittests/RTCAudioDeviceModule_xctest.mm",
1033 "objc/unittests/RTCAudioDevice_xctest.mm",
Peter Hanspers8d95e3b2018-05-15 08:22:361034 ]
1035 }
1036
Danielaae012cf2017-10-12 11:46:001037 deps = [
Peter Hanspers8d95e3b2018-05-15 08:22:361038 ":audio_device",
1039 ":audio_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:291040 ":base_objc",
1041 ":callback_logger_objc",
Anders Carlssondc6b4772018-01-15 12:31:031042 ":framework_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:291043 ":mediaconstraints_objc",
Anders Carlssonfe9d8172018-04-03 09:40:391044 ":native_api",
Peter Hanspers8d95e3b2018-05-15 08:22:361045 ":native_api_audio_device_module",
Anders Carlssonfe9d8172018-04-03 09:40:391046 ":native_video",
Anders Carlsson7bca8ca2018-08-30 07:30:291047 ":peerconnectionfactory_base_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221048 ":videocapture_objc",
Anders Carlsson79ce8202018-06-01 10:51:091049 ":videocodec_objc",
Anders Carlssonfe9d8172018-04-03 09:40:391050 ":videoframebuffer_objc",
Anders Carlsson9823ee42018-03-07 09:32:031051 ":videosource_objc",
Danielaae012cf2017-10-12 11:46:001052 ":videotoolbox_objc",
Niels Möllerc6ce9c52018-05-11 09:15:301053 "../api/video:video_frame_i420",
Anders Carlssonfe9d8172018-04-03 09:40:391054 "../common_video:common_video",
Danielaae012cf2017-10-12 11:46:001055 "../media:rtc_media_base",
Anders Carlssonfe9d8172018-04-03 09:40:391056 "../media:rtc_media_tests_utils",
Danielaae012cf2017-10-12 11:46:001057 "../modules:module_api",
1058 "../rtc_base:rtc_base",
1059 "../rtc_base:rtc_base_tests_utils",
Oleh Prypinda04e062018-07-23 08:04:121060 "../system_wrappers:system_wrappers",
1061 "../system_wrappers:system_wrappers_default",
Anders Carlssonfe9d8172018-04-03 09:40:391062 "//third_party/libyuv",
Danielaae012cf2017-10-12 11:46:001063 ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:221064
1065 if (rtc_use_metal_rendering) {
Anders Carlsson7bca8ca2018-08-30 07:30:291066 sources += [ "objc/unittests/RTCMTLVideoView_xctest.m" ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:221067 deps += [ ":metal_objc" ]
1068 }
1069
Danielaae012cf2017-10-12 11:46:001070 public_deps = [
1071 "//build/config/ios:xctest",
1072 "//third_party/ocmock",
1073 ]
1074 }
1075
Daniela012b56b2017-11-15 12:15:241076 bundle_data("sdk_unittests_bundle_data") {
Daniela012b56b2017-11-15 12:15:241077 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291078 "objc/unittests/audio_short16.pcm",
1079 "objc/unittests/audio_short44.pcm",
1080 "objc/unittests/audio_short48.pcm",
Peter Hanspers8d95e3b2018-05-15 08:22:361081
1082 # Sample video taken from https://media.xiph.org/video/derf/
Anders Carlsson7bca8ca2018-08-30 07:30:291083 "objc/unittests/foreman.mp4",
Daniela012b56b2017-11-15 12:15:241084 ]
1085 outputs = [
1086 "{{bundle_resources_dir}}/{{source_file_part}}",
1087 ]
1088 }
1089
Anders Carlsson7bca8ca2018-08-30 07:30:291090 # These tests use static linking.
Danielaae012cf2017-10-12 11:46:001091 rtc_ios_xctest_test("sdk_unittests") {
1092 info_plist = "//test/ios/Info.plist"
1093 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291094 "objc/unittests/main.m",
Danielaae012cf2017-10-12 11:46:001095 ]
Daniela012b56b2017-11-15 12:15:241096
Danielaae012cf2017-10-12 11:46:001097 _bundle_id_suffix = ios_generic_test_bundle_id_suffix
1098 extra_substitutions = [ "GTEST_BUNDLE_ID_SUFFIX=$_bundle_id_suffix" ]
1099 deps = [
Yura Yaroshevich5297bd22018-06-19 09:51:511100 ":peerconnectionfactory_base_objc",
Daniela012b56b2017-11-15 12:15:241101 ":sdk_unittests_bundle_data",
Danielaae012cf2017-10-12 11:46:001102 ":sdk_unittests_sources",
1103 ]
1104 ldflags = [ "-all_load" ]
1105 }
Anders Carlsson7bca8ca2018-08-30 07:30:291106
1107 # These tests link to the framework.
1108 rtc_ios_xctest_test("sdk_framework_unittests") {
1109 info_plist = "//test/ios/Info.plist"
1110 sources = [
1111 "objc/unittests/RTCDoNotPutCPlusPlusInFrameworkHeaders_xctest.m",
1112 "objc/unittests/main.m",
1113 ]
1114
1115 _bundle_id_suffix = ios_generic_test_bundle_id_suffix
1116 extra_substitutions = [ "GTEST_BUNDLE_ID_SUFFIX=$_bundle_id_suffix" ]
1117 deps = [
1118 ":framework_objc+link",
1119 ":ios_framework_bundle",
1120 ]
1121 }
Danielaae012cf2017-10-12 11:46:001122 }
1123
1124 # TODO(denicija): once all tests are migrated to xctest remove this source set.
Kári Tristan Helgason90143242018-07-27 10:34:541125 rtc_source_set("rtc_unittests_objc") {
mbonadei2c8ac1b2017-05-31 12:14:261126 testonly = true
Kári Tristan Helgasoncbe74352016-11-09 09:43:261127
mbonadei2c8ac1b2017-05-31 12:14:261128 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291129 "objc/unittests/RTCCertificateTest.mm",
1130 "objc/unittests/RTCConfigurationTest.mm",
1131 "objc/unittests/RTCDataChannelConfigurationTest.mm",
1132 "objc/unittests/RTCIceCandidateTest.mm",
1133 "objc/unittests/RTCIceServerTest.mm",
1134 "objc/unittests/RTCIntervalRangeTests.mm",
1135 "objc/unittests/RTCMediaConstraintsTest.mm",
1136 "objc/unittests/RTCPeerConnectionFactoryBuilderTest.mm",
1137 "objc/unittests/RTCPeerConnectionTest.mm",
1138 "objc/unittests/RTCSessionDescriptionTest.mm",
1139 "objc/unittests/RTCTracingTest.mm",
1140 "objc/unittests/objc_video_decoder_factory_tests.mm",
1141 "objc/unittests/objc_video_encoder_factory_tests.mm",
1142 "objc/unittests/scoped_cftyperef_tests.mm",
mbonadei2c8ac1b2017-05-31 12:14:261143 ]
Anders Carlssone7dd83f2018-01-19 10:28:441144 if (is_ios) {
Anders Carlsson7bca8ca2018-08-30 07:30:291145 sources += [ "objc/unittests/RTCCameraVideoCapturerTests.mm" ]
oprypin45197522017-06-22 08:47:201146 }
mbonadeid7620582017-05-30 08:50:351147
mbonadei2c8ac1b2017-05-31 12:14:261148 # |-ObjC| flag needed to make sure category method implementations
1149 # are included:
1150 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
1151 ldflags = [ "-ObjC" ]
magjed3149e092017-05-08 12:32:051152
mbonadei2c8ac1b2017-05-31 12:14:261153 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:291154 ":base_objc",
1155 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221156 ":mediaconstraints_objc",
1157 ":native_api",
Anders Carlsson3ff50fb2018-02-01 14:47:051158 ":native_video",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221159 ":peerconnectionfactory_base_objc",
1160 ":video_objc",
1161 ":videocapture_objc",
1162 ":videocodec_objc",
1163 ":videoframebuffer_objc",
Anders Carlsson9823ee42018-03-07 09:32:031164 ":videosource_objc",
kthelgason36d658d2017-08-24 12:43:451165 ":videotoolbox_objc",
Jiawei Ouae810c12018-06-20 23:18:591166 "../api/audio_codecs:audio_codecs_api",
1167 "../api/audio_codecs:builtin_audio_decoder_factory",
1168 "../api/audio_codecs:builtin_audio_encoder_factory",
Magnus Jedvert8b4e92d2018-04-13 13:36:431169 "../api/video_codecs:video_codecs_api",
kthelgasonebd4f792017-09-04 11:36:211170 "../media:rtc_media_base",
kthelgasonfb143122017-07-25 14:55:581171 "../modules:module_api",
Jiawei Ouae810c12018-06-20 23:18:591172 "../modules/audio_device:audio_device_api",
1173 "../modules/audio_processing:audio_processing",
Patrik Höglund99175c62018-01-08 10:05:101174 "../modules/video_coding:video_codec_interface",
ehmaldonadof6a861a2017-07-19 17:40:471175 "../rtc_base:rtc_base_tests_utils",
Niels Möllera12c42a2018-07-25 14:05:481176 "../rtc_base/system:unused",
Oleh Prypinda04e062018-07-23 08:04:121177 "../system_wrappers:system_wrappers_default",
Kári Tristan Helgasonca957482017-10-05 12:06:521178 "//test:test_support",
mbonadei2c8ac1b2017-05-31 12:14:261179 "//third_party/ocmock",
1180 ]
magjed3149e092017-05-08 12:32:051181
denicija59ee91b2017-06-05 12:48:471182 if (is_ios) {
Anders Carlsson7bca8ca2018-08-30 07:30:291183 sources += [ "objc/unittests/RTCAudioSessionTest.mm" ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:221184 deps += [ ":audio_objc" ]
mbonadei2c8ac1b2017-05-31 12:14:261185 }
mbonadei2c8ac1b2017-05-31 12:14:261186 }
kthelgason2f088792017-05-30 08:48:471187 }
1188
mbonadei2c8ac1b2017-05-31 12:14:261189 if (is_ios) {
Anders Carlssondc6b4772018-01-15 12:31:031190 ios_framework_bundle_with_umbrella_header("framework_objc") {
Anders Carlsson7bca8ca2018-08-30 07:30:291191 info_plist = "objc/Info.plist"
mbonadei2c8ac1b2017-05-31 12:14:261192 output_name = "WebRTC"
Magnus Jedvertf83dc8b2017-08-29 09:49:431193
mbonadei2c8ac1b2017-05-31 12:14:261194 common_objc_headers = [
Anders Carlsson7bca8ca2018-08-30 07:30:291195 "objc/base/RTCCodecSpecificInfo.h",
1196 "objc/base/RTCEncodedImage.h",
Anders Carlsson4e5af962018-09-03 12:44:501197 "objc/base/RTCI420Buffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291198 "objc/base/RTCLogging.h",
1199 "objc/base/RTCMacros.h",
Anders Carlsson4e5af962018-09-03 12:44:501200 "objc/base/RTCMutableI420Buffer.h",
1201 "objc/base/RTCMutableYUVPlanarBuffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291202 "objc/base/RTCRtpFragmentationHeader.h",
1203 "objc/base/RTCVideoCapturer.h",
1204 "objc/base/RTCVideoCodecInfo.h",
1205 "objc/base/RTCVideoDecoder.h",
1206 "objc/base/RTCVideoDecoderFactory.h",
1207 "objc/base/RTCVideoEncoder.h",
1208 "objc/base/RTCVideoEncoderFactory.h",
1209 "objc/base/RTCVideoEncoderQpThresholds.h",
1210 "objc/base/RTCVideoEncoderSettings.h",
1211 "objc/base/RTCVideoFrame.h",
1212 "objc/base/RTCVideoFrameBuffer.h",
1213 "objc/base/RTCVideoRenderer.h",
Anders Carlsson4e5af962018-09-03 12:44:501214 "objc/base/RTCYUVPlanarBuffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291215 "objc/components/audio/RTCAudioSession.h",
1216 "objc/components/audio/RTCAudioSessionConfiguration.h",
1217 "objc/components/capturer/RTCCameraVideoCapturer.h",
1218 "objc/components/capturer/RTCFileVideoCapturer.h",
1219 "objc/components/renderer/metal/RTCMTLVideoView.h",
1220 "objc/components/renderer/opengl/RTCEAGLVideoView.h",
1221 "objc/components/renderer/opengl/RTCVideoViewShading.h",
1222 "objc/components/video_codec/RTCCodecSpecificInfoH264.h",
1223 "objc/components/video_codec/RTCDefaultVideoDecoderFactory.h",
1224 "objc/components/video_codec/RTCDefaultVideoEncoderFactory.h",
1225 "objc/components/video_codec/RTCH264ProfileLevelId.h",
1226 "objc/components/video_codec/RTCVideoDecoderFactoryH264.h",
1227 "objc/components/video_codec/RTCVideoDecoderH264.h",
1228 "objc/components/video_codec/RTCVideoEncoderFactoryH264.h",
1229 "objc/components/video_codec/RTCVideoEncoderH264.h",
1230 "objc/components/video_frame_buffer/RTCCVPixelBuffer.h",
1231 "objc/helpers/RTCCameraPreviewView.h",
1232 "objc/helpers/RTCDispatcher.h",
1233 "objc/helpers/UIDevice+RTCDevice.h",
1234 "objc/api/peerconnection/RTCAudioSource.h",
1235 "objc/api/peerconnection/RTCAudioTrack.h",
1236 "objc/api/peerconnection/RTCConfiguration.h",
1237 "objc/api/peerconnection/RTCDataChannel.h",
1238 "objc/api/peerconnection/RTCDataChannelConfiguration.h",
1239 "objc/api/peerconnection/RTCFieldTrials.h",
1240 "objc/api/peerconnection/RTCIceCandidate.h",
1241 "objc/api/peerconnection/RTCIceServer.h",
1242 "objc/api/peerconnection/RTCIntervalRange.h",
1243 "objc/api/peerconnection/RTCLegacyStatsReport.h",
1244 "objc/api/peerconnection/RTCMediaConstraints.h",
1245 "objc/api/peerconnection/RTCMediaSource.h",
1246 "objc/api/peerconnection/RTCMediaStream.h",
1247 "objc/api/peerconnection/RTCMediaStreamTrack.h",
1248 "objc/api/peerconnection/RTCMetrics.h",
1249 "objc/api/peerconnection/RTCMetricsSampleInfo.h",
1250 "objc/api/peerconnection/RTCPeerConnection.h",
1251 "objc/api/peerconnection/RTCPeerConnectionFactory.h",
1252 "objc/api/peerconnection/RTCPeerConnectionFactoryOptions.h",
1253 "objc/api/peerconnection/RTCRtcpParameters.h",
1254 "objc/api/peerconnection/RTCRtpCodecParameters.h",
1255 "objc/api/peerconnection/RTCRtpEncodingParameters.h",
1256 "objc/api/peerconnection/RTCRtpHeaderExtension.h",
1257 "objc/api/peerconnection/RTCRtpParameters.h",
1258 "objc/api/peerconnection/RTCRtpReceiver.h",
1259 "objc/api/peerconnection/RTCRtpSender.h",
1260 "objc/api/peerconnection/RTCRtpTransceiver.h",
1261 "objc/api/peerconnection/RTCDtmfSender.h",
1262 "objc/api/peerconnection/RTCSSLAdapter.h",
1263 "objc/api/peerconnection/RTCSessionDescription.h",
1264 "objc/api/peerconnection/RTCTracing.h",
1265 "objc/api/peerconnection/RTCCertificate.h",
1266 "objc/api/peerconnection/RTCVideoSource.h",
1267 "objc/api/peerconnection/RTCVideoTrack.h",
Anders Carlsson4e5af962018-09-03 12:44:501268 "objc/api/video_codec/RTCVideoCodecConstants.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291269 "objc/api/video_codec/RTCVideoDecoderVP8.h",
1270 "objc/api/video_codec/RTCVideoDecoderVP9.h",
1271 "objc/api/video_codec/RTCVideoEncoderVP8.h",
1272 "objc/api/video_codec/RTCVideoEncoderVP9.h",
Anders Carlsson4e5af962018-09-03 12:44:501273 "objc/api/video_frame_buffer/RTCNativeI420Buffer.h",
1274 "objc/api/video_frame_buffer/RTCNativeMutableI420Buffer.h",
mbonadei2c8ac1b2017-05-31 12:14:261275 ]
Magnus Jedvert8b4e92d2018-04-13 13:36:431276
mbonadei2c8ac1b2017-05-31 12:14:261277 if (!build_with_chromium) {
Kári Tristan Helgason99bf77c2018-02-16 09:49:221278 common_objc_headers += [
Anders Carlsson7bca8ca2018-08-30 07:30:291279 "objc/api/logging/RTCCallbackLogger.h",
1280 "objc/api/peerconnection/RTCFileLogger.h",
Anders Carlsson3b3364e2018-01-30 14:46:131281 ]
mbonadei2c8ac1b2017-05-31 12:14:261282 }
Kári Tristan Helgasoncbe74352016-11-09 09:43:261283
Kári Tristan Helgason99bf77c2018-02-16 09:49:221284 sources = common_objc_headers
1285 public_headers = common_objc_headers
1286
mbonadei2c8ac1b2017-05-31 12:14:261287 ldflags = [
1288 "-all_load",
1289 "-install_name",
1290 "@rpath/$output_name.framework/$output_name",
1291 ]
Kári Tristan Helgasoncbe74352016-11-09 09:43:261292
mbonadei2c8ac1b2017-05-31 12:14:261293 deps = [
kthelgason36d658d2017-08-24 12:43:451294 ":audio_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:291295 ":base_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221296 ":default_codec_factory_objc",
1297 ":native_api",
1298 ":native_video",
1299 ":peerconnectionfactory_base_objc",
kthelgason36d658d2017-08-24 12:43:451300 ":ui_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221301 ":videocapture_objc",
1302 ":videocodec_objc",
1303 ":videotoolbox_objc",
ehmaldonadof6a861a2017-07-19 17:40:471304 "../rtc_base:rtc_base_approved",
mbonadei2c8ac1b2017-05-31 12:14:261305 "../system_wrappers:field_trial_default",
1306 "../system_wrappers:metrics_default",
Ilya Nikolaevskiy2ffe3e82018-01-17 19:57:241307 "../system_wrappers:runtime_enabled_features_default",
mbonadei2c8ac1b2017-05-31 12:14:261308 ]
Kári Tristan Helgason99bf77c2018-02-16 09:49:221309 if (rtc_use_metal_rendering) {
Kári Tristan Helgason99bf77c2018-02-16 09:49:221310 deps += [ ":metal_objc" ]
1311 }
Anders Carlsson7bca8ca2018-08-30 07:30:291312 if (!build_with_chromium) {
1313 deps += [
1314 ":callback_logger_objc",
1315 ":file_logger_objc",
1316 ]
1317 }
Kári Tristan Helgasoncbe74352016-11-09 09:43:261318
mbonadei2c8ac1b2017-05-31 12:14:261319 libs = [
1320 "AVFoundation.framework",
1321 "CoreGraphics.framework",
1322 "CoreMedia.framework",
1323 "GLKit.framework",
1324 ]
1325
Anders Carlsson358f2e02018-06-04 08:24:371326 configs += [
1327 "..:common_objc",
1328 ":used_from_extension",
1329 ]
mbonadei2c8ac1b2017-05-31 12:14:261330
kthelgason36d658d2017-08-24 12:43:451331 public_configs = [ ":common_config_objc" ]
mbonadei2c8ac1b2017-05-31 12:14:261332 }
Anders Carlsson7bca8ca2018-08-30 07:30:291333
1334 bundle_data("ios_framework_bundle") {
1335 deps = [
1336 "../sdk:framework_objc",
1337 ]
1338 sources = [
1339 "$root_build_dir/WebRTC.framework",
1340 ]
1341 outputs = [
1342 "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}",
1343 ]
1344 }
1345 }
1346
1347 if (is_mac) {
1348 mac_framework_header_files = [
1349 "objc/base/RTCCodecSpecificInfo.h",
1350 "objc/base/RTCEncodedImage.h",
Anders Carlsson4e5af962018-09-03 12:44:501351 "objc/base/RTCI420Buffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291352 "objc/base/RTCLogging.h",
1353 "objc/base/RTCMacros.h",
Anders Carlsson4e5af962018-09-03 12:44:501354 "objc/base/RTCMutableI420Buffer.h",
1355 "objc/base/RTCMutableYUVPlanarBuffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291356 "objc/base/RTCRtpFragmentationHeader.h",
1357 "objc/base/RTCVideoCapturer.h",
1358 "objc/base/RTCVideoCodecInfo.h",
1359 "objc/base/RTCVideoDecoder.h",
1360 "objc/base/RTCVideoDecoderFactory.h",
1361 "objc/base/RTCVideoEncoder.h",
1362 "objc/base/RTCVideoEncoderFactory.h",
1363 "objc/base/RTCVideoEncoderQpThresholds.h",
1364 "objc/base/RTCVideoEncoderSettings.h",
1365 "objc/base/RTCVideoFrame.h",
1366 "objc/base/RTCVideoFrameBuffer.h",
1367 "objc/base/RTCVideoRenderer.h",
Anders Carlsson4e5af962018-09-03 12:44:501368 "objc/base/RTCYUVPlanarBuffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291369 "objc/components/capturer/RTCCameraVideoCapturer.h",
1370 "objc/components/capturer/RTCFileVideoCapturer.h",
1371 "objc/components/renderer/metal/RTCMTLNSVideoView.h",
1372 "objc/components/renderer/opengl/RTCNSGLVideoView.h",
1373 "objc/components/renderer/opengl/RTCVideoViewShading.h",
1374 "objc/components/video_codec/RTCCodecSpecificInfoH264.h",
1375 "objc/components/video_codec/RTCDefaultVideoDecoderFactory.h",
1376 "objc/components/video_codec/RTCDefaultVideoEncoderFactory.h",
1377 "objc/components/video_codec/RTCH264ProfileLevelId.h",
1378 "objc/components/video_codec/RTCVideoDecoderFactoryH264.h",
1379 "objc/components/video_codec/RTCVideoDecoderH264.h",
1380 "objc/components/video_codec/RTCVideoEncoderFactoryH264.h",
1381 "objc/components/video_codec/RTCVideoEncoderH264.h",
1382 "objc/components/video_frame_buffer/RTCCVPixelBuffer.h",
1383 "objc/helpers/RTCDispatcher.h",
1384 "objc/api/peerconnection/RTCAudioSource.h",
1385 "objc/api/peerconnection/RTCAudioTrack.h",
1386 "objc/api/peerconnection/RTCConfiguration.h",
1387 "objc/api/peerconnection/RTCDataChannel.h",
1388 "objc/api/peerconnection/RTCDataChannelConfiguration.h",
1389 "objc/api/peerconnection/RTCFieldTrials.h",
1390 "objc/api/peerconnection/RTCIceCandidate.h",
1391 "objc/api/peerconnection/RTCIceServer.h",
1392 "objc/api/peerconnection/RTCIntervalRange.h",
1393 "objc/api/peerconnection/RTCLegacyStatsReport.h",
1394 "objc/api/peerconnection/RTCMediaConstraints.h",
1395 "objc/api/peerconnection/RTCMediaSource.h",
1396 "objc/api/peerconnection/RTCMediaStream.h",
1397 "objc/api/peerconnection/RTCMediaStreamTrack.h",
1398 "objc/api/peerconnection/RTCMetrics.h",
1399 "objc/api/peerconnection/RTCMetricsSampleInfo.h",
1400 "objc/api/peerconnection/RTCPeerConnection.h",
1401 "objc/api/peerconnection/RTCPeerConnectionFactory.h",
1402 "objc/api/peerconnection/RTCPeerConnectionFactoryOptions.h",
1403 "objc/api/peerconnection/RTCRtcpParameters.h",
1404 "objc/api/peerconnection/RTCRtpCodecParameters.h",
1405 "objc/api/peerconnection/RTCRtpEncodingParameters.h",
1406 "objc/api/peerconnection/RTCRtpHeaderExtension.h",
1407 "objc/api/peerconnection/RTCRtpParameters.h",
1408 "objc/api/peerconnection/RTCRtpReceiver.h",
1409 "objc/api/peerconnection/RTCRtpSender.h",
1410 "objc/api/peerconnection/RTCRtpTransceiver.h",
1411 "objc/api/peerconnection/RTCDtmfSender.h",
1412 "objc/api/peerconnection/RTCSSLAdapter.h",
1413 "objc/api/peerconnection/RTCSessionDescription.h",
1414 "objc/api/peerconnection/RTCTracing.h",
1415 "objc/api/peerconnection/RTCCertificate.h",
1416 "objc/api/peerconnection/RTCVideoSource.h",
1417 "objc/api/peerconnection/RTCVideoTrack.h",
1418 "objc/api/video_codec/RTCVideoDecoderVP8.h",
1419 "objc/api/video_codec/RTCVideoDecoderVP9.h",
1420 "objc/api/video_codec/RTCVideoEncoderVP8.h",
1421 "objc/api/video_codec/RTCVideoEncoderVP9.h",
Anders Carlsson4e5af962018-09-03 12:44:501422 "objc/api/video_frame_buffer/RTCNativeI420Buffer.h",
1423 "objc/api/video_frame_buffer/RTCNativeMutableI420Buffer.h",
Anders Carlsson7bca8ca2018-08-30 07:30:291424 ]
1425 if (!build_with_chromium) {
1426 mac_framework_header_files += [
1427 "objc/api/logging/RTCCallbackLogger.h",
1428 "objc/api/peerconnection/RTCFileLogger.h",
1429 ]
1430 }
1431
1432 bundle_data("framework_headers") {
1433 # TODO(andersc): Generate umbrella header
1434 sources = mac_framework_header_files
1435 outputs = [
1436 "{{bundle_contents_dir}}/Headers/{{source_file_part}}",
1437 ]
1438 }
1439
1440 mac_framework_bundle("mac_framework_objc") {
1441 info_plist = "objc/Info.plist"
1442 output_name = "WebRTC"
1443 framework_version = "A"
1444 framework_contents = [ "Headers" ]
1445
1446 sources = mac_framework_header_files
1447
1448 ldflags = [
1449 "-all_load",
1450 "-install_name",
1451 "@rpath/$output_name.framework/$output_name",
1452 ]
1453
1454 deps = [
1455 ":base_objc",
1456 ":default_codec_factory_objc",
1457 ":framework_headers",
1458 ":native_api",
1459 ":native_video",
1460 ":peerconnectionfactory_base_objc",
1461 ":ui_objc",
1462 ":videocapture_objc",
1463 ":videocodec_objc",
1464 ":videotoolbox_objc",
1465 "../rtc_base:rtc_base_approved",
1466 "../system_wrappers:field_trial_default",
1467 "../system_wrappers:metrics_default",
1468 "../system_wrappers:runtime_enabled_features_default",
1469 ]
1470 if (rtc_use_metal_rendering) {
1471 deps += [ ":metal_objc" ]
1472 }
1473 if (!build_with_chromium) {
1474 deps += [
1475 ":callback_logger_objc",
1476 ":file_logger_objc",
1477 ]
1478 }
1479
1480 libs = [
1481 "AVFoundation.framework",
1482 "CoreGraphics.framework",
1483 "CoreMedia.framework",
1484 "OpenGL.framework",
1485 ]
1486
1487 configs += [ "..:common_objc" ]
1488
1489 public_configs = [ ":common_config_objc" ]
1490 }
1491
1492 bundle_data("mac_framework_bundle") {
1493 deps = [
1494 "../sdk:mac_framework_objc",
1495 ]
1496 sources = [
1497 "$root_build_dir/WebRTC.framework",
1498 ]
1499 outputs = [
1500 "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}",
1501 ]
1502 }
Kári Tristan Helgasoncbe74352016-11-09 09:43:261503 }
1504
Anders Carlsson9823ee42018-03-07 09:32:031505 rtc_static_library("wrapped_native_codec_objc") {
1506 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291507 "objc/api/video_codec/RTCWrappedNativeVideoDecoder.h",
1508 "objc/api/video_codec/RTCWrappedNativeVideoDecoder.mm",
1509 "objc/api/video_codec/RTCWrappedNativeVideoEncoder.h",
1510 "objc/api/video_codec/RTCWrappedNativeVideoEncoder.mm",
Anders Carlsson9823ee42018-03-07 09:32:031511 ]
1512
1513 configs += [ "..:common_objc" ]
1514 public_configs = [ ":common_config_objc" ]
1515
Anders Carlsson9823ee42018-03-07 09:32:031516 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:291517 ":base_objc",
1518 ":helpers_objc",
Anders Carlsson9823ee42018-03-07 09:32:031519 "../api/video_codecs:video_codecs_api",
1520 "../media:rtc_media_base",
1521 ]
1522 }
1523
Anders Carlsson3ff50fb2018-02-01 14:47:051524 # The native API is currently experimental and may change without notice.
1525 rtc_static_library("native_api") {
1526 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:051527 allow_poison = [
1528 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
1529 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
1530 ]
Anders Carlsson3ff50fb2018-02-01 14:47:051531 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291532 "objc/native/api/video_capturer.h",
1533 "objc/native/api/video_capturer.mm",
1534 "objc/native/api/video_decoder_factory.h",
1535 "objc/native/api/video_decoder_factory.mm",
1536 "objc/native/api/video_encoder_factory.h",
1537 "objc/native/api/video_encoder_factory.mm",
1538 "objc/native/api/video_frame.h",
1539 "objc/native/api/video_frame.mm",
1540 "objc/native/api/video_frame_buffer.h",
1541 "objc/native/api/video_frame_buffer.mm",
1542 "objc/native/api/video_renderer.h",
1543 "objc/native/api/video_renderer.mm",
Anders Carlsson3ff50fb2018-02-01 14:47:051544 ]
1545
1546 configs += [ "..:common_objc" ]
1547
1548 public_configs = [ ":common_config_objc" ]
1549
Anders Carlsson3ff50fb2018-02-01 14:47:051550 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:291551 ":base_objc",
Anders Carlsson3ff50fb2018-02-01 14:47:051552 ":native_video",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221553 ":videoframebuffer_objc",
Anders Carlsson73119182018-03-15 08:41:031554 "../api:libjingle_peerconnection_api",
Niels Möllerc6ce9c52018-05-11 09:15:301555 "../api/video:video_frame",
Anders Carlsson3ff50fb2018-02-01 14:47:051556 "../api/video_codecs:video_codecs_api",
1557 "../common_video",
1558 "../rtc_base:rtc_base",
Mirko Bonadei879f7882018-07-11 07:18:371559 "//third_party/abseil-cpp/absl/memory",
Anders Carlsson3ff50fb2018-02-01 14:47:051560 ]
1561 }
1562
1563 rtc_static_library("native_video") {
1564 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291565 "objc/native/src/objc_frame_buffer.h",
1566 "objc/native/src/objc_frame_buffer.mm",
1567 "objc/native/src/objc_video_decoder_factory.h",
1568 "objc/native/src/objc_video_decoder_factory.mm",
1569 "objc/native/src/objc_video_encoder_factory.h",
1570 "objc/native/src/objc_video_encoder_factory.mm",
1571 "objc/native/src/objc_video_frame.h",
1572 "objc/native/src/objc_video_frame.mm",
1573 "objc/native/src/objc_video_renderer.h",
1574 "objc/native/src/objc_video_renderer.mm",
1575 "objc/native/src/objc_video_track_source.h",
1576 "objc/native/src/objc_video_track_source.mm",
Anders Carlsson3ff50fb2018-02-01 14:47:051577 ]
1578
1579 configs += [ "..:common_objc" ]
1580
1581 public_configs = [ ":common_config_objc" ]
1582
1583 if (!build_with_chromium && is_clang) {
1584 # Suppress warnings from the Chromium Clang plugin
1585 # (bugs.webrtc.org/163).
1586 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1587 }
1588
1589 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:291590 ":base_native_additions_objc",
1591 ":base_objc",
1592 ":helpers_objc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221593 ":videocodec_objc",
1594 ":videoframebuffer_objc",
Anders Carlsson7bca8ca2018-08-30 07:30:291595 ":vpx_codec_constants",
Anders Carlsson9823ee42018-03-07 09:32:031596 ":wrapped_native_codec_objc",
Niels Möllerc6ce9c52018-05-11 09:15:301597 "../api/video:video_frame",
1598 "../api/video:video_frame_i420",
Anders Carlsson3ff50fb2018-02-01 14:47:051599 "../api/video_codecs:video_codecs_api",
1600 "../common_video",
1601 "../media:rtc_audio_video",
1602 "../media:rtc_media_base",
1603 "../modules:module_api",
1604 "../modules/video_coding:video_codec_interface",
1605 "../rtc_base:checks",
1606 "../rtc_base:rtc_base",
Mirko Bonadei879f7882018-07-11 07:18:371607 "//third_party/abseil-cpp/absl/memory",
Anders Carlsson3ff50fb2018-02-01 14:47:051608 ]
1609 }
1610
mbonadeic0af5ac2017-08-24 19:26:051611 rtc_static_library("video_toolbox_cc") {
mbonadei6ff8f962017-09-04 12:51:341612 visibility = [ ":videotoolbox_objc" ]
mbonadei2c8ac1b2017-05-31 12:14:261613 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291614 "objc/components/video_codec/helpers.cc",
1615 "objc/components/video_codec/helpers.h",
1616 "objc/components/video_codec/nalu_rewriter.cc",
1617 "objc/components/video_codec/nalu_rewriter.h",
mbonadeic0af5ac2017-08-24 19:26:051618 ]
1619 deps = [
1620 "../common_video",
1621 "../modules:module_api",
1622 "../modules/video_coding:webrtc_h264",
Patrik Höglunda8005cf2017-12-13 15:05:421623 "../rtc_base:checks",
mbonadeic0af5ac2017-08-24 19:26:051624 "../rtc_base:rtc_base_approved",
1625 ]
mbonadeic0af5ac2017-08-24 19:26:051626 }
1627
1628 rtc_static_library("videotoolbox_objc") {
Kári Tristan Helgason99bf77c2018-02-16 09:49:221629 visibility = [ "*" ]
Anders Carlsson1f433e42018-04-24 14:39:051630 allow_poison = [
1631 "audio_codecs", # TODO(bugs.webrtc.org/8396): Remove.
1632 "software_video_codecs", # TODO(bugs.webrtc.org/7925): Remove.
1633 ]
mbonadeic0af5ac2017-08-24 19:26:051634 sources = [
Anders Carlsson7bca8ca2018-08-30 07:30:291635 "objc/components/video_codec/RTCVideoDecoderFactoryH264.h",
1636 "objc/components/video_codec/RTCVideoDecoderFactoryH264.m",
1637 "objc/components/video_codec/RTCVideoDecoderH264.h",
1638 "objc/components/video_codec/RTCVideoDecoderH264.mm",
1639 "objc/components/video_codec/RTCVideoEncoderFactoryH264.h",
1640 "objc/components/video_codec/RTCVideoEncoderFactoryH264.m",
1641 "objc/components/video_codec/RTCVideoEncoderH264.h",
1642 "objc/components/video_codec/RTCVideoEncoderH264.mm",
mbonadei2c8ac1b2017-05-31 12:14:261643 ]
1644
Anders Carlsson358f2e02018-06-04 08:24:371645 configs += [
1646 "..:common_objc",
1647 ":used_from_extension",
1648 ]
1649
1650 if (is_ios && rtc_apprtcmobile_broadcast_extension) {
1651 defines = [ "RTC_APPRTCMOBILE_BROADCAST_EXTENSION" ]
1652 }
mbonadei2c8ac1b2017-05-31 12:14:261653
1654 deps = [
Anders Carlsson7bca8ca2018-08-30 07:30:291655 ":base_native_additions_objc",
1656 ":base_objc",
1657 ":helpers_objc",
mbonadeic0af5ac2017-08-24 19:26:051658 ":video_toolbox_cc",
Kári Tristan Helgason99bf77c2018-02-16 09:49:221659 ":videocodec_objc",
1660 ":videoframebuffer_objc",
mbonadei2c8ac1b2017-05-31 12:14:261661 "../common_video",
mbonadei2c8ac1b2017-05-31 12:14:261662 "../modules:module_api",
Patrik Höglund99175c62018-01-08 10:05:101663 "../modules/video_coding:video_codec_interface",
Patrik Höglunda8005cf2017-12-13 15:05:421664 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:471665 "../rtc_base:rtc_base_approved",
Mirko Bonadei401d0562017-12-14 10:24:001666 "//third_party/libyuv",
mbonadei2c8ac1b2017-05-31 12:14:261667 ]
1668
1669 libs = [
1670 "CoreFoundation.framework",
1671 "CoreMedia.framework",
1672 "CoreVideo.framework",
1673 "VideoToolbox.framework",
1674 ]
Kári Tristan Helgasoncbe74352016-11-09 09:43:261675 }
1676 }
tkchin9eeb6242016-04-27 08:54:201677}