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

Unified Diff: third_party/libvpx/generate_gypi.sh

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, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/libvpx/generate_gypi.sh
diff --git a/third_party/libvpx/generate_gypi.sh b/third_party/libvpx/generate_gypi.sh
index 350c05ea6b28b03302d490f6b87986ad4ea97c95..f663bad47ba1cee3bd46733f0317e0c95f09d51d 100755
--- a/third_party/libvpx/generate_gypi.sh
+++ b/third_party/libvpx/generate_gypi.sh
@@ -240,7 +240,9 @@ function write_intrinsics_gypi {
write_target_definition sse4_1_sources[@] "$2" libvpx_intrinsics_sse4_1 sse4.1
fi
if [[ -z $DISABLE_AVX && 0 -ne ${#avx_sources} ]]; then
- write_target_definition avx_sources[@] "$2" libvpx_intrinsics_avx avx
+ #write_target_definition avx_sources[@] "$2" libvpx_intrinsics_avx avx
+ echo "ERROR: Uncomment avx sections in libvpx.gyp and BUILD.gn"
+ exit 1
fi
if [[ -z $DISABLE_AVX && 0 -ne ${#avx2_sources} ]]; then
write_target_definition avx2_sources[@] "$2" libvpx_intrinsics_avx2 avx2

Powered by Google App Engine
This is Rietveld 408576698