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

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

Issue 3010123002: Tightening visibility of video_toolbox_cc. (Closed)
Patch Set: Created 3 years, 3 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 | no next file » | 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 if (!build_with_chromium && is_clang) { 693 if (!build_with_chromium && is_clang) {
694 # Suppress warnings from the Chromium Clang plugin 694 # Suppress warnings from the Chromium Clang plugin
695 # (bugs.webrtc.org/163). 695 # (bugs.webrtc.org/163).
696 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 696 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
697 } 697 }
698 698
699 libs = [ "CoreVideo.framework" ] 699 libs = [ "CoreVideo.framework" ]
700 } 700 }
701 701
702 rtc_static_library("video_toolbox_cc") { 702 rtc_static_library("video_toolbox_cc") {
703 visibility = [ ":*" ] 703 visibility = [ ":videotoolbox_objc" ]
704 sources = [ 704 sources = [
705 "objc/Framework/Classes/VideoToolbox/helpers.cc", 705 "objc/Framework/Classes/VideoToolbox/helpers.cc",
706 "objc/Framework/Classes/VideoToolbox/helpers.h", 706 "objc/Framework/Classes/VideoToolbox/helpers.h",
707 "objc/Framework/Classes/VideoToolbox/nalu_rewriter.cc", 707 "objc/Framework/Classes/VideoToolbox/nalu_rewriter.cc",
708 "objc/Framework/Classes/VideoToolbox/nalu_rewriter.h", 708 "objc/Framework/Classes/VideoToolbox/nalu_rewriter.h",
709 ] 709 ]
710 deps = [ 710 deps = [
711 "../common_video", 711 "../common_video",
712 "../modules:module_api", 712 "../modules:module_api",
713 "../modules/video_coding:webrtc_h264", 713 "../modules/video_coding:webrtc_h264",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 public_deps = [ 767 public_deps = [
768 "$rtc_libyuv_dir", 768 "$rtc_libyuv_dir",
769 ] 769 ]
770 } else { 770 } else {
771 # Need to add a directory normally exported by libyuv. 771 # Need to add a directory normally exported by libyuv.
772 include_dirs = [ "$rtc_libyuv_dir/include" ] 772 include_dirs = [ "$rtc_libyuv_dir/include" ]
773 } 773 }
774 } 774 }
775 } 775 }
776 } 776 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698