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

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

Issue 2997913003: Modify profiles for H264 encode SW fallback (Closed)
Patch Set: Fix gn deps Created 3 years, 4 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/media/engine/videoencodersoftwarefallbackwrapper.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 (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 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("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 deps += [ "$rtc_libyuv_dir" ] 105 deps += [ "$rtc_libyuv_dir" ]
106 public_deps = [ 106 public_deps = [
107 "$rtc_libyuv_dir", 107 "$rtc_libyuv_dir",
108 ] 108 ]
109 } else { 109 } else {
110 # Need to add a directory normally exported by libyuv. 110 # Need to add a directory normally exported by libyuv.
111 include_dirs += [ "$rtc_libyuv_dir/include" ] 111 include_dirs += [ "$rtc_libyuv_dir/include" ]
112 } 112 }
113 113
114 deps += [ 114 deps += [
115 ":rtc_h264_profile_id",
116 "..:webrtc_common", 115 "..:webrtc_common",
117 "../api:libjingle_peerconnection_api", 116 "../api:libjingle_peerconnection_api",
118 "../p2p", 117 "../p2p",
119 "../rtc_base:rtc_base", 118 "../rtc_base:rtc_base",
120 "../rtc_base:rtc_base_approved", 119 "../rtc_base:rtc_base_approved",
121 ] 120 ]
122 121
122 public_deps += [ ":rtc_h264_profile_id" ]
123
123 if (is_nacl) { 124 if (is_nacl) {
124 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 125 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
125 } 126 }
126 } 127 }
127 128
128 rtc_static_library("rtc_audio_video") { 129 rtc_static_library("rtc_audio_video") {
129 defines = [] 130 defines = []
130 libs = [] 131 libs = []
131 deps = [] 132 deps = []
132 sources = [ 133 sources = [
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 "../rtc_base:rtc_base_approved", 523 "../rtc_base:rtc_base_approved",
523 "../rtc_base:rtc_base_tests_main", 524 "../rtc_base:rtc_base_tests_main",
524 "../rtc_base:rtc_base_tests_utils", 525 "../rtc_base:rtc_base_tests_utils",
525 "../system_wrappers:metrics_default", 526 "../system_wrappers:metrics_default",
526 "../test:audio_codec_mocks", 527 "../test:audio_codec_mocks",
527 "../test:test_support", 528 "../test:test_support",
528 "../voice_engine:voice_engine", 529 "../voice_engine:voice_engine",
529 ] 530 ]
530 } 531 }
531 } 532 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/engine/videoencodersoftwarefallbackwrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698