| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 ":objc_ui", | 513 ":objc_ui", |
| 514 "../system_wrappers:field_trial_default", | 514 "../system_wrappers:field_trial_default", |
| 515 "../system_wrappers:metrics_default", | 515 "../system_wrappers:metrics_default", |
| 516 ] | 516 ] |
| 517 } | 517 } |
| 518 | 518 |
| 519 rtc_static_library("objc_corevideoframebuffer") { | 519 rtc_static_library("objc_corevideoframebuffer") { |
| 520 sources = [ | 520 sources = [ |
| 521 "objc/Framework/Classes/Video/corevideo_frame_buffer.cc", | 521 "objc/Framework/Classes/Video/corevideo_frame_buffer.cc", |
| 522 "objc/Framework/Classes/Video/corevideo_frame_buffer.h", | 522 "objc/Framework/Classes/Video/corevideo_frame_buffer.h", |
| 523 | |
| 524 # TODO(mbonadei): remove this backward compatibility header | |
| 525 "objc/Framework/Classes/corevideo_frame_buffer.h", | |
| 526 ] | 523 ] |
| 527 | 524 |
| 528 deps = [ | 525 deps = [ |
| 529 "../base:rtc_base_approved", | 526 "../base:rtc_base_approved", |
| 530 "../common_video", | 527 "../common_video", |
| 531 ] | 528 ] |
| 532 | 529 |
| 533 if (!build_with_chromium && is_clang) { | 530 if (!build_with_chromium && is_clang) { |
| 534 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 531 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 535 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 532 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 public_deps = [ | 579 public_deps = [ |
| 583 "$rtc_libyuv_dir", | 580 "$rtc_libyuv_dir", |
| 584 ] | 581 ] |
| 585 } else { | 582 } else { |
| 586 # Need to add a directory normally exported by libyuv. | 583 # Need to add a directory normally exported by libyuv. |
| 587 include_dirs = [ "$rtc_libyuv_dir/include" ] | 584 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 588 } | 585 } |
| 589 } | 586 } |
| 590 } | 587 } |
| 591 } | 588 } |
| OLD | NEW |