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

Side by Side Diff: third_party/libvpx/libvpx.gyp

Issue 2027703002: Roll src/third_party/libvpx/source/libvpx/ 4f774ac50..f80d8011a (12 commits). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'variables': { 5 'variables': {
6 'libvpx_build_vp9%': 1, 6 'libvpx_build_vp9%': 1,
7 'libvpx_source%': 'source/libvpx', 7 'libvpx_source%': 'source/libvpx',
8 # Disable LTO for neon targets 8 # Disable LTO for neon targets
9 # crbug.com/408997 9 # crbug.com/408997
10 'use_lto%': 0, 10 'use_lto%': 0,
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 'includes': [ 152 'includes': [
153 'libvpx_srcs_x86.gypi', 153 'libvpx_srcs_x86.gypi',
154 ], 154 ],
155 'dependencies': [ 155 'dependencies': [
156 'libvpx_intrinsics_mmx', 156 'libvpx_intrinsics_mmx',
157 'libvpx_intrinsics_sse2', 157 'libvpx_intrinsics_sse2',
158 # Currently no sse3 intrinsic functions 158 # Currently no sse3 intrinsic functions
159 #'libvpx_intrinsics_sse3', 159 #'libvpx_intrinsics_sse3',
160 'libvpx_intrinsics_ssse3', 160 'libvpx_intrinsics_ssse3',
161 'libvpx_intrinsics_sse4_1', 161 'libvpx_intrinsics_sse4_1',
162 'libvpx_intrinsics_avx', 162 # Currently no avx intrinsic functions
163 #'libvpx_intrinsics_avx',
163 'libvpx_intrinsics_avx2', 164 'libvpx_intrinsics_avx2',
164 ], 165 ],
165 }], 166 }],
166 ['target_arch=="arm64"', { 167 ['target_arch=="arm64"', {
167 'includes': [ 'libvpx_srcs_arm64.gypi', ], 168 'includes': [ 'libvpx_srcs_arm64.gypi', ],
168 }], 169 }],
169 ['target_arch=="x64"', { 170 ['target_arch=="x64"', {
170 'conditions': [ 171 'conditions': [
171 ['msan==1', { 172 ['msan==1', {
172 'includes': [ 'libvpx_srcs_generic.gypi', ], 173 'includes': [ 'libvpx_srcs_generic.gypi', ],
173 }, { 174 }, {
174 'includes': [ 175 'includes': [
175 'libvpx_srcs_x86_64.gypi', 176 'libvpx_srcs_x86_64.gypi',
176 ], 177 ],
177 'dependencies': [ 178 'dependencies': [
178 'libvpx_intrinsics_mmx', 179 'libvpx_intrinsics_mmx',
179 'libvpx_intrinsics_sse2', 180 'libvpx_intrinsics_sse2',
180 # Currently no sse3 intrinsic functions 181 # Currently no sse3 intrinsic functions
181 #'libvpx_intrinsics_sse3', 182 #'libvpx_intrinsics_sse3',
182 'libvpx_intrinsics_ssse3', 183 'libvpx_intrinsics_ssse3',
183 'libvpx_intrinsics_sse4_1', 184 'libvpx_intrinsics_sse4_1',
184 'libvpx_intrinsics_avx', 185 # Currently no avx intrinsic functions
186 #'libvpx_intrinsics_avx',
185 'libvpx_intrinsics_avx2', 187 'libvpx_intrinsics_avx2',
186 ], 188 ],
187 }], 189 }],
188 ], 190 ],
189 }], 191 }],
190 ], 192 ],
191 }, 193 },
192 ], 194 ],
193 }, 195 },
194 ], 196 ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 '-fstack-protector-all', # Implies -fstack-protector 293 '-fstack-protector-all', # Implies -fstack-protector
292 ], 294 ],
293 }, 295 },
294 }], 296 }],
295 ], 297 ],
296 }, 298 },
297 ], 299 ],
298 }], 300 }],
299 ], 301 ],
300 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698