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

Side by Side Diff: webrtc/sdk/BUILD.gn

Issue 2980173002: Revert of Injectable Obj-C video codecs (Closed)
Patch Set: Created 3 years, 5 months 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 | webrtc/sdk/objc/Framework/Classes/Common/helpers.h » ('j') | 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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_ios) { 10 if (is_ios) {
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 public_deps = [ 303 public_deps = [
304 "$rtc_libyuv_dir", 304 "$rtc_libyuv_dir",
305 ] 305 ]
306 } 306 }
307 } 307 }
308 308
309 rtc_static_library("objc_peerconnectionfactory") { 309 rtc_static_library("objc_peerconnectionfactory") {
310 sources = [ 310 sources = [
311 "objc/Framework/Classes/PeerConnection/RTCPeerConnectionFactory+Private. h", 311 "objc/Framework/Classes/PeerConnection/RTCPeerConnectionFactory+Private. h",
312 "objc/Framework/Classes/PeerConnection/RTCPeerConnectionFactory.mm", 312 "objc/Framework/Classes/PeerConnection/RTCPeerConnectionFactory.mm",
313 "objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm",
314 "objc/Framework/Classes/PeerConnection/objc_video_decoder_factory.h",
315 "objc/Framework/Classes/PeerConnection/objc_video_decoder_factory.mm",
316 "objc/Framework/Classes/PeerConnection/objc_video_encoder_factory.h",
317 "objc/Framework/Classes/PeerConnection/objc_video_encoder_factory.mm",
318 ] 313 ]
319 314
320 public_configs = [ ":objc_common_config" ] 315 public_configs = [ ":objc_common_config" ]
321 316
322 if (!build_with_chromium && is_clang) { 317 if (!build_with_chromium && is_clang) {
323 # Suppress warnings from the Chromium Clang plugin 318 # Suppress warnings from the Chromium Clang plugin
324 # (bugs.webrtc.org/163). 319 # (bugs.webrtc.org/163).
325 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 320 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
326 } 321 }
327 322
328 deps = [ 323 deps = [
329 ":objc_common", 324 ":objc_common",
330 ":objc_corevideoframebuffer", 325 ":objc_corevideoframebuffer",
331 ":objc_peerconnectionfactory_base", 326 ":objc_peerconnectionfactory_base",
332 ":objc_video", 327 ":objc_video",
333 ":objc_videotoolbox", 328 ":objc_videotoolbox",
334 ":objc_videotracksource",
335 "../api:video_frame_api", 329 "../api:video_frame_api",
336 "../api/video_codecs:video_codecs_api",
337 "../base:rtc_base", 330 "../base:rtc_base",
338 "../media:rtc_audio_video",
339 "../media:rtc_media_base", 331 "../media:rtc_media_base",
340 "../modules:module_api",
341 "../pc:create_pc_factory", 332 "../pc:create_pc_factory",
342 "../pc:peerconnection", 333 "../pc:peerconnection",
343 "../system_wrappers:field_trial_api",
344 ] 334 ]
345 } 335 }
346 336
347 # Build the PeerConnectionFactory without audio/video support. 337 # Build the PeerConnectionFactory without audio/video support.
348 # This target depends on the objc_peeerconnectionfactory_base which still 338 # This target depends on the objc_peeerconnectionfactory_base which still
349 # includes some audio/video related objects such as RTCAudioSource because 339 # includes some audio/video related objects such as RTCAudioSource because
350 # these objects are just thin wrappers of native C++ interfaces required 340 # these objects are just thin wrappers of native C++ interfaces required
351 # when implementing webrtc::PeerConnectionFactoryInterface and 341 # when implementing webrtc::PeerConnectionFactoryInterface and
352 # webrtc::PeerConnectionInterface. 342 # webrtc::PeerConnectionInterface.
353 # The applications which only use WebRTC DataChannel can depend on this 343 # The applications which only use WebRTC DataChannel can depend on this
(...skipping 26 matching lines...) Expand all
380 "objc/Framework/Classes/PeerConnection/RTCAudioSource+Private.h", 370 "objc/Framework/Classes/PeerConnection/RTCAudioSource+Private.h",
381 "objc/Framework/Classes/PeerConnection/RTCAudioSource.mm", 371 "objc/Framework/Classes/PeerConnection/RTCAudioSource.mm",
382 "objc/Framework/Classes/PeerConnection/RTCAudioTrack+Private.h", 372 "objc/Framework/Classes/PeerConnection/RTCAudioTrack+Private.h",
383 "objc/Framework/Classes/PeerConnection/RTCAudioTrack.mm", 373 "objc/Framework/Classes/PeerConnection/RTCAudioTrack.mm",
384 "objc/Framework/Classes/PeerConnection/RTCConfiguration+Private.h", 374 "objc/Framework/Classes/PeerConnection/RTCConfiguration+Private.h",
385 "objc/Framework/Classes/PeerConnection/RTCConfiguration.mm", 375 "objc/Framework/Classes/PeerConnection/RTCConfiguration.mm",
386 "objc/Framework/Classes/PeerConnection/RTCDataChannel+Private.h", 376 "objc/Framework/Classes/PeerConnection/RTCDataChannel+Private.h",
387 "objc/Framework/Classes/PeerConnection/RTCDataChannel.mm", 377 "objc/Framework/Classes/PeerConnection/RTCDataChannel.mm",
388 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration+Priva te.h", 378 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration+Priva te.h",
389 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration.mm", 379 "objc/Framework/Classes/PeerConnection/RTCDataChannelConfiguration.mm",
390 "objc/Framework/Classes/PeerConnection/RTCEncodedImage.mm",
391 "objc/Framework/Classes/PeerConnection/RTCIceCandidate+Private.h", 380 "objc/Framework/Classes/PeerConnection/RTCIceCandidate+Private.h",
392 "objc/Framework/Classes/PeerConnection/RTCIceCandidate.mm", 381 "objc/Framework/Classes/PeerConnection/RTCIceCandidate.mm",
393 "objc/Framework/Classes/PeerConnection/RTCIceServer+Private.h", 382 "objc/Framework/Classes/PeerConnection/RTCIceServer+Private.h",
394 "objc/Framework/Classes/PeerConnection/RTCIceServer.mm", 383 "objc/Framework/Classes/PeerConnection/RTCIceServer.mm",
395 "objc/Framework/Classes/PeerConnection/RTCIntervalRange+Private.h", 384 "objc/Framework/Classes/PeerConnection/RTCIntervalRange+Private.h",
396 "objc/Framework/Classes/PeerConnection/RTCIntervalRange.mm", 385 "objc/Framework/Classes/PeerConnection/RTCIntervalRange.mm",
397 "objc/Framework/Classes/PeerConnection/RTCLegacyStatsReport+Private.h", 386 "objc/Framework/Classes/PeerConnection/RTCLegacyStatsReport+Private.h",
398 "objc/Framework/Classes/PeerConnection/RTCLegacyStatsReport.mm", 387 "objc/Framework/Classes/PeerConnection/RTCLegacyStatsReport.mm",
399 "objc/Framework/Classes/PeerConnection/RTCMediaConstraints+Private.h", 388 "objc/Framework/Classes/PeerConnection/RTCMediaConstraints+Private.h",
400 "objc/Framework/Classes/PeerConnection/RTCMediaConstraints.mm", 389 "objc/Framework/Classes/PeerConnection/RTCMediaConstraints.mm",
401 "objc/Framework/Classes/PeerConnection/RTCMediaSource+Private.h", 390 "objc/Framework/Classes/PeerConnection/RTCMediaSource+Private.h",
402 "objc/Framework/Classes/PeerConnection/RTCMediaSource.mm", 391 "objc/Framework/Classes/PeerConnection/RTCMediaSource.mm",
403 "objc/Framework/Classes/PeerConnection/RTCMediaStream+Private.h", 392 "objc/Framework/Classes/PeerConnection/RTCMediaStream+Private.h",
404 "objc/Framework/Classes/PeerConnection/RTCMediaStream.mm", 393 "objc/Framework/Classes/PeerConnection/RTCMediaStream.mm",
405 "objc/Framework/Classes/PeerConnection/RTCMediaStreamTrack+Private.h", 394 "objc/Framework/Classes/PeerConnection/RTCMediaStreamTrack+Private.h",
406 "objc/Framework/Classes/PeerConnection/RTCMediaStreamTrack.mm", 395 "objc/Framework/Classes/PeerConnection/RTCMediaStreamTrack.mm",
407 "objc/Framework/Classes/PeerConnection/RTCMetrics.mm", 396 "objc/Framework/Classes/PeerConnection/RTCMetrics.mm",
408 "objc/Framework/Classes/PeerConnection/RTCMetricsSampleInfo+Private.h", 397 "objc/Framework/Classes/PeerConnection/RTCMetricsSampleInfo+Private.h",
409 "objc/Framework/Classes/PeerConnection/RTCMetricsSampleInfo.mm", 398 "objc/Framework/Classes/PeerConnection/RTCMetricsSampleInfo.mm",
410 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+DataChannel.mm" , 399 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+DataChannel.mm" ,
411 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+Private.h", 400 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+Private.h",
412 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+Stats.mm", 401 "objc/Framework/Classes/PeerConnection/RTCPeerConnection+Stats.mm",
413 "objc/Framework/Classes/PeerConnection/RTCPeerConnection.mm", 402 "objc/Framework/Classes/PeerConnection/RTCPeerConnection.mm",
414 "objc/Framework/Classes/PeerConnection/RTCRtpCodecParameters+Private.h", 403 "objc/Framework/Classes/PeerConnection/RTCRtpCodecParameters+Private.h",
415 "objc/Framework/Classes/PeerConnection/RTCRtpCodecParameters.mm", 404 "objc/Framework/Classes/PeerConnection/RTCRtpCodecParameters.mm",
416 "objc/Framework/Classes/PeerConnection/RTCRtpEncodingParameters+Private. h", 405 "objc/Framework/Classes/PeerConnection/RTCRtpEncodingParameters+Private. h",
417 "objc/Framework/Classes/PeerConnection/RTCRtpEncodingParameters.mm", 406 "objc/Framework/Classes/PeerConnection/RTCRtpEncodingParameters.mm",
418 "objc/Framework/Classes/PeerConnection/RTCRtpFragmentationHeader.mm",
419 "objc/Framework/Classes/PeerConnection/RTCRtpParameters+Private.h", 407 "objc/Framework/Classes/PeerConnection/RTCRtpParameters+Private.h",
420 "objc/Framework/Classes/PeerConnection/RTCRtpParameters.mm", 408 "objc/Framework/Classes/PeerConnection/RTCRtpParameters.mm",
421 "objc/Framework/Classes/PeerConnection/RTCRtpReceiver+Private.h", 409 "objc/Framework/Classes/PeerConnection/RTCRtpReceiver+Private.h",
422 "objc/Framework/Classes/PeerConnection/RTCRtpReceiver.mm", 410 "objc/Framework/Classes/PeerConnection/RTCRtpReceiver.mm",
423 "objc/Framework/Classes/PeerConnection/RTCRtpSender+Private.h", 411 "objc/Framework/Classes/PeerConnection/RTCRtpSender+Private.h",
424 "objc/Framework/Classes/PeerConnection/RTCRtpSender.mm", 412 "objc/Framework/Classes/PeerConnection/RTCRtpSender.mm",
425 "objc/Framework/Classes/PeerConnection/RTCSSLAdapter.mm", 413 "objc/Framework/Classes/PeerConnection/RTCSSLAdapter.mm",
426 "objc/Framework/Classes/PeerConnection/RTCSessionDescription+Private.h", 414 "objc/Framework/Classes/PeerConnection/RTCSessionDescription+Private.h",
427 "objc/Framework/Classes/PeerConnection/RTCSessionDescription.mm", 415 "objc/Framework/Classes/PeerConnection/RTCSessionDescription.mm",
428 "objc/Framework/Classes/PeerConnection/RTCTracing.mm", 416 "objc/Framework/Classes/PeerConnection/RTCTracing.mm",
429 "objc/Framework/Classes/PeerConnection/RTCVideoCapturer.m", 417 "objc/Framework/Classes/PeerConnection/RTCVideoCapturer.m",
430 "objc/Framework/Classes/PeerConnection/RTCVideoCodec+Private.h",
431 "objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm",
432 "objc/Framework/Classes/PeerConnection/RTCVideoFrame.mm", 418 "objc/Framework/Classes/PeerConnection/RTCVideoFrame.mm",
433 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter+Private.h ", 419 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter+Private.h ",
434 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.h", 420 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.h",
435 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.mm", 421 "objc/Framework/Classes/PeerConnection/RTCVideoRendererAdapter.mm",
436 "objc/Framework/Classes/PeerConnection/RTCVideoSource+Private.h", 422 "objc/Framework/Classes/PeerConnection/RTCVideoSource+Private.h",
437 "objc/Framework/Classes/PeerConnection/RTCVideoSource.mm", 423 "objc/Framework/Classes/PeerConnection/RTCVideoSource.mm",
438 "objc/Framework/Classes/PeerConnection/RTCVideoTrack+Private.h", 424 "objc/Framework/Classes/PeerConnection/RTCVideoTrack+Private.h",
439 "objc/Framework/Classes/PeerConnection/RTCVideoTrack.mm", 425 "objc/Framework/Classes/PeerConnection/RTCVideoTrack.mm",
440 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h", 426 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h",
441 "objc/Framework/Headers/WebRTC/RTCAudioSource.h", 427 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 } 469 }
484 470
485 deps = [ 471 deps = [
486 ":objc_common", 472 ":objc_common",
487 ":objc_corevideoframebuffer", 473 ":objc_corevideoframebuffer",
488 ":objc_videotracksource", 474 ":objc_videotracksource",
489 "../api:video_frame_api", 475 "../api:video_frame_api",
490 "../base:rtc_base", 476 "../base:rtc_base",
491 "../common_video", 477 "../common_video",
492 "../media:rtc_media_base", 478 "../media:rtc_media_base",
493 "../modules:module_api",
494 "../pc:peerconnection", 479 "../pc:peerconnection",
495 ] 480 ]
496 } 481 }
497 482
498 if (rtc_include_tests) { 483 if (rtc_include_tests) {
499 rtc_source_set("objc_sdk_unittests") { 484 rtc_source_set("objc_sdk_unittests") {
500 testonly = true 485 testonly = true
501 486
502 # Skip restricting visibility on mobile platforms since the tests on tho se 487 # Skip restricting visibility on mobile platforms since the tests on tho se
503 # gets additional generated targets which would require many lines here to 488 # gets additional generated targets which would require many lines here to
504 # cover (which would be confusing to read and hard to maintain). 489 # cover (which would be confusing to read and hard to maintain).
505 if (!is_android && !is_ios) { 490 if (!is_android && !is_ios) {
506 visibility = [ "..:rtc_unittests" ] 491 visibility = [ "..:rtc_unittests" ]
507 } 492 }
508 sources = [ 493 sources = [
509 "objc/Framework/UnitTests/RTCConfigurationTest.mm", 494 "objc/Framework/UnitTests/RTCConfigurationTest.mm",
510 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", 495 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm",
511 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", 496 "objc/Framework/UnitTests/RTCIceCandidateTest.mm",
512 "objc/Framework/UnitTests/RTCIceServerTest.mm", 497 "objc/Framework/UnitTests/RTCIceServerTest.mm",
513 "objc/Framework/UnitTests/RTCIntervalRangeTests.mm", 498 "objc/Framework/UnitTests/RTCIntervalRangeTests.mm",
514 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", 499 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm",
515 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", 500 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm",
516 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", 501 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm",
517 "objc/Framework/UnitTests/RTCTracingTest.mm", 502 "objc/Framework/UnitTests/RTCTracingTest.mm",
518 "objc/Framework/UnitTests/avformatmappertests.mm", 503 "objc/Framework/UnitTests/avformatmappertests.mm",
519 "objc/Framework/UnitTests/objc_video_decoder_factory_tests.mm",
520 "objc/Framework/UnitTests/objc_video_encoder_factory_tests.mm",
521 ] 504 ]
522 if (is_ios && 505 if (is_ios &&
523 !(use_ios_simulator && 506 !(use_ios_simulator &&
524 # The tests crash on these simulator versions: 507 # The tests crash on these simulator versions:
525 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { 508 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) {
526 sources += 509 sources +=
527 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] 510 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ]
528 } 511 }
529 512
530 # |-ObjC| flag needed to make sure category method implementations 513 # |-ObjC| flag needed to make sure category method implementations
531 # are included: 514 # are included:
532 # https://developer.apple.com/library/mac/qa/qa1490/_index.html 515 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
533 ldflags = [ "-ObjC" ] 516 ldflags = [ "-ObjC" ]
534 517
535 defines = [ "GTEST_RELATIVE_PATH" ] 518 defines = [ "GTEST_RELATIVE_PATH" ]
536 deps = [ 519 deps = [
537 ":objc_peerconnection", 520 ":objc_peerconnection",
538 ":objc_peerconnectionfactory",
539 ":objc_videotracksource",
540 "..//system_wrappers:system_wrappers_default", 521 "..//system_wrappers:system_wrappers_default",
541 "../base:rtc_base_tests_utils", 522 "../base:rtc_base_tests_utils",
542 "../modules:module_api",
543 "../system_wrappers:system_wrappers_default", 523 "../system_wrappers:system_wrappers_default",
544 "//third_party/ocmock", 524 "//third_party/ocmock",
545 ] 525 ]
546 526
547 if (is_ios) { 527 if (is_ios) {
548 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ] 528 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ]
549 529
550 # RTCMTLVideoView not supported on 32-bit arm 530 # RTCMTLVideoView not supported on 32-bit arm
551 if (current_cpu != "arm") { 531 if (current_cpu != "arm") {
552 sources += [ "objc/Framework/UnitTests/RTCMTLVideoViewTests.mm" ] 532 sources += [ "objc/Framework/UnitTests/RTCMTLVideoViewTests.mm" ]
(...skipping 13 matching lines...) Expand all
566 } 546 }
567 } 547 }
568 548
569 if (is_ios) { 549 if (is_ios) {
570 ios_framework_bundle("objc_framework") { 550 ios_framework_bundle("objc_framework") {
571 info_plist = "objc/Framework/Info.plist" 551 info_plist = "objc/Framework/Info.plist"
572 output_name = "WebRTC" 552 output_name = "WebRTC"
573 553
574 common_objc_headers = [ 554 common_objc_headers = [
575 "objc/Framework/Headers/WebRTC/RTCAudioSession.h", 555 "objc/Framework/Headers/WebRTC/RTCAudioSession.h",
576 "objc/Framework/Headers/WebRTC/RTCVideoCodec.h",
577 "objc/Framework/Headers/WebRTC/RTCVideoCodecFactory.h",
578 "objc/Framework/Headers/WebRTC/RTCAudioSessionConfiguration.h", 556 "objc/Framework/Headers/WebRTC/RTCAudioSessionConfiguration.h",
579 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h", 557 "objc/Framework/Headers/WebRTC/RTCAVFoundationVideoSource.h",
580 "objc/Framework/Headers/WebRTC/RTCAudioSource.h", 558 "objc/Framework/Headers/WebRTC/RTCAudioSource.h",
581 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h", 559 "objc/Framework/Headers/WebRTC/RTCAudioTrack.h",
582 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h", 560 "objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h",
583 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", 561 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h",
584 "objc/Framework/Headers/WebRTC/RTCConfiguration.h", 562 "objc/Framework/Headers/WebRTC/RTCConfiguration.h",
585 "objc/Framework/Headers/WebRTC/RTCDataChannel.h", 563 "objc/Framework/Headers/WebRTC/RTCDataChannel.h",
586 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h", 564 "objc/Framework/Headers/WebRTC/RTCDataChannelConfiguration.h",
587 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", 565 "objc/Framework/Headers/WebRTC/RTCDispatcher.h",
(...skipping 22 matching lines...) Expand all
610 "objc/Framework/Headers/WebRTC/RTCSessionDescription.h", 588 "objc/Framework/Headers/WebRTC/RTCSessionDescription.h",
611 "objc/Framework/Headers/WebRTC/RTCTracing.h", 589 "objc/Framework/Headers/WebRTC/RTCTracing.h",
612 "objc/Framework/Headers/WebRTC/RTCVideoCapturer.h", 590 "objc/Framework/Headers/WebRTC/RTCVideoCapturer.h",
613 "objc/Framework/Headers/WebRTC/RTCVideoFrame.h", 591 "objc/Framework/Headers/WebRTC/RTCVideoFrame.h",
614 "objc/Framework/Headers/WebRTC/RTCVideoFrameBuffer.h", 592 "objc/Framework/Headers/WebRTC/RTCVideoFrameBuffer.h",
615 "objc/Framework/Headers/WebRTC/RTCVideoRenderer.h", 593 "objc/Framework/Headers/WebRTC/RTCVideoRenderer.h",
616 "objc/Framework/Headers/WebRTC/RTCVideoSource.h", 594 "objc/Framework/Headers/WebRTC/RTCVideoSource.h",
617 "objc/Framework/Headers/WebRTC/RTCVideoTrack.h", 595 "objc/Framework/Headers/WebRTC/RTCVideoTrack.h",
618 "objc/Framework/Headers/WebRTC/RTCVideoViewShading.h", 596 "objc/Framework/Headers/WebRTC/RTCVideoViewShading.h",
619 "objc/Framework/Headers/WebRTC/UIDevice+RTCDevice.h", 597 "objc/Framework/Headers/WebRTC/UIDevice+RTCDevice.h",
620 "objc/Framework/Headers/WebRTC/RTCVideoCodecH264.h",
621 "objc/Framework/Headers/WebRTC/WebRTC.h", 598 "objc/Framework/Headers/WebRTC/WebRTC.h",
622 ] 599 ]
623 if (rtc_use_metal_rendering) { 600 if (rtc_use_metal_rendering) {
624 common_objc_headers += 601 common_objc_headers +=
625 [ "objc/Framework/Headers/WebRTC/RTCMTLVideoView.h" ] 602 [ "objc/Framework/Headers/WebRTC/RTCMTLVideoView.h" ]
626 } 603 }
627 sources = common_objc_headers 604 sources = common_objc_headers
628 public_headers = common_objc_headers 605 public_headers = common_objc_headers
629 606
630 if (!build_with_chromium) { 607 if (!build_with_chromium) {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 public_deps = [ 720 public_deps = [
744 "$rtc_libyuv_dir", 721 "$rtc_libyuv_dir",
745 ] 722 ]
746 } else { 723 } else {
747 # Need to add a directory normally exported by libyuv. 724 # Need to add a directory normally exported by libyuv.
748 include_dirs = [ "$rtc_libyuv_dir/include" ] 725 include_dirs = [ "$rtc_libyuv_dir/include" ]
749 } 726 }
750 } 727 }
751 } 728 }
752 } 729 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/Common/helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698