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

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2205763002: Disable encoder scaling on iPhone4S. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Revert GYP file. Created 4 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/modules/video_coding/codecs/h264/h264.gypi » ('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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "//third_party/openh264:encoder", 172 "//third_party/openh264:encoder",
173 ] 173 ]
174 } 174 }
175 } 175 }
176 176
177 if (is_ios) { 177 if (is_ios) {
178 source_set("webrtc_h264_video_toolbox") { 178 source_set("webrtc_h264_video_toolbox") {
179 sources = [ 179 sources = [
180 "codecs/h264/h264_video_toolbox_decoder.cc", 180 "codecs/h264/h264_video_toolbox_decoder.cc",
181 "codecs/h264/h264_video_toolbox_decoder.h", 181 "codecs/h264/h264_video_toolbox_decoder.h",
182 "codecs/h264/h264_video_toolbox_encoder.cc",
183 "codecs/h264/h264_video_toolbox_encoder.h", 182 "codecs/h264/h264_video_toolbox_encoder.h",
183 "codecs/h264/h264_video_toolbox_encoder.mm",
184 "codecs/h264/h264_video_toolbox_nalu.cc", 184 "codecs/h264/h264_video_toolbox_nalu.cc",
185 "codecs/h264/h264_video_toolbox_nalu.h", 185 "codecs/h264/h264_video_toolbox_nalu.h",
186 ] 186 ]
187 187
188 configs += [ 188 configs += [
189 "../..:common_objc", 189 "../..:common_objc",
190 "//build/config/compiler:enable_arc", 190 "//build/config/compiler:enable_arc",
191 ] 191 ]
192 192
193 deps = [ 193 deps = [
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 # Suppress warnings from Chrome's Clang plugins. 332 # Suppress warnings from Chrome's Clang plugins.
333 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 333 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
334 configs -= [ "//build/config/clang:find_bad_constructs" ] 334 configs -= [ "//build/config/clang:find_bad_constructs" ]
335 } 335 }
336 336
337 deps = [ 337 deps = [
338 "../../test:test_support", 338 "../../test:test_support",
339 ] 339 ]
340 } 340 }
341 } 341 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codecs/h264/h264.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698