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

Side by Side Diff: webrtc/build/webrtc.gni

Issue 1187573004: iOS HW H264 support. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Move unittest file. Created 5 years, 5 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 (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/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//build/config/mips.gni") 10 import("//build/config/mips.gni")
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 if (!is_ios && (current_cpu != "arm" || arm_version >= 7)) { 102 if (!is_ios && (current_cpu != "arm" || arm_version >= 7)) {
103 rtc_use_openmax_dl = true 103 rtc_use_openmax_dl = true
104 } else { 104 } else {
105 rtc_use_openmax_dl = false 105 rtc_use_openmax_dl = false
106 } 106 }
107 107
108 # Determines whether NEON code will be built. 108 # Determines whether NEON code will be built.
109 rtc_build_with_neon = (current_cpu == "arm" && 109 rtc_build_with_neon = (current_cpu == "arm" &&
110 (arm_use_neon == 1 || arm_optionally_use_neon == 1)) || 110 (arm_use_neon == 1 || arm_optionally_use_neon == 1)) ||
111 current_cpu == "arm64" 111 current_cpu == "arm64"
112
113 # Enable this to use HW H.264 encoder/decoder on iOS PeerConnections.
114 # Enabling this may break interop with Android clients that support H264.
115 rtc_use_objc_h264 = false
112 } 116 }
113 117
114 # Make it possible to provide custom locations for some libraries (move these 118 # Make it possible to provide custom locations for some libraries (move these
115 # up into declare_args should we need to actually use them for the GN build). 119 # up into declare_args should we need to actually use them for the GN build).
116 rtc_libvpx_dir = "//third_party/libvpx" 120 rtc_libvpx_dir = "//third_party/libvpx"
117 rtc_libyuv_dir = "//third_party/libyuv" 121 rtc_libyuv_dir = "//third_party/libyuv"
118 rtc_opus_dir = "//third_party/opus" 122 rtc_opus_dir = "//third_party/opus"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698