OLD | NEW |
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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 ":objc_ui", | 472 ":objc_ui", |
473 "//webrtc/system_wrappers:field_trial_default", | 473 "//webrtc/system_wrappers:field_trial_default", |
474 "//webrtc/system_wrappers:metrics_default", | 474 "//webrtc/system_wrappers:metrics_default", |
475 ] | 475 ] |
476 } | 476 } |
477 | 477 |
478 rtc_static_library("objc_corevideoframebuffer") { | 478 rtc_static_library("objc_corevideoframebuffer") { |
479 sources = [ | 479 sources = [ |
480 "objc/Framework/Classes/Video/corevideo_frame_buffer.cc", | 480 "objc/Framework/Classes/Video/corevideo_frame_buffer.cc", |
481 "objc/Framework/Classes/Video/corevideo_frame_buffer.h", | 481 "objc/Framework/Classes/Video/corevideo_frame_buffer.h", |
| 482 |
| 483 # TODO(mbonadei): remove this backward compatibility header |
| 484 "objc/Framework/Classes/corevideo_frame_buffer.h", |
482 ] | 485 ] |
483 | 486 |
484 deps = [ | 487 deps = [ |
485 "../base:rtc_base_approved", | 488 "../base:rtc_base_approved", |
486 "../common_video", | 489 "../common_video", |
487 ] | 490 ] |
488 | 491 |
489 if (!build_with_chromium && is_clang) { | 492 if (!build_with_chromium && is_clang) { |
490 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 493 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
491 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 494 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 deps += [ "$rtc_libyuv_dir" ] | 540 deps += [ "$rtc_libyuv_dir" ] |
538 public_deps = [ | 541 public_deps = [ |
539 "$rtc_libyuv_dir", | 542 "$rtc_libyuv_dir", |
540 ] | 543 ] |
541 } else { | 544 } else { |
542 # Need to add a directory normally exported by libyuv. | 545 # Need to add a directory normally exported by libyuv. |
543 include_dirs = [ "$rtc_libyuv_dir/include" ] | 546 include_dirs = [ "$rtc_libyuv_dir/include" ] |
544 } | 547 } |
545 } | 548 } |
546 } | 549 } |
OLD | NEW |