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

Unified Diff: third_party/libvpx/BUILD.gn

Issue 2549623004: [ABANDONED] Disable AVX2 in libvpx for the SyzyAsan builds of Chrome. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libvpx/BUILD.gn
diff --git a/third_party/libvpx/BUILD.gn b/third_party/libvpx/BUILD.gn
index 2c79ee0f4051f09295e9e6cc63d1308077f035e7..ba1593dc9a56c67ddab936237c13291d408769a6 100644
--- a/third_party/libvpx/BUILD.gn
+++ b/third_party/libvpx/BUILD.gn
@@ -311,7 +311,8 @@ static_library("libvpx") {
configs += [ "//build/config/compiler:no_chromium_code" ]
configs += [ ":libvpx_warnings" ]
deps = []
- if (current_cpu == "x86" || (current_cpu == "x64" && !is_msan)) {
+ if ((current_cpu == "x86" && !is_syzyasan) ||
+ (current_cpu == "x64" && !is_msan)) {
deps += [
":libvpx_intrinsics_avx",
":libvpx_intrinsics_avx2",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698