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

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

Issue 2935933002: Removing backward compatible header (Closed)
Patch Set: Removing backward compatible header from common_video Created 3 years, 6 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
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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « webrtc/common_video/include/corevideo_frame_buffer.h ('k') | webrtc/sdk/objc/Framework/Classes/corevideo_frame_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698