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

Unified Diff: third_party/boringssl/boringssl.gyp

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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/boringssl/boringssl.gyp
diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
index d0b716a8f7d43b348f336d69441f3bf34cb4d4eb..845a920589a2a9a393d870cf12e0671702dadf4e 100644
--- a/third_party/boringssl/boringssl.gyp
+++ b/third_party/boringssl/boringssl.gyp
@@ -29,6 +29,9 @@
['target_arch == "arm"', {
'sources': [ '<@(boringssl_linux_arm_sources)' ],
}],
+ ['target_arch == "arm64"', {
+ 'sources': [ '<@(boringssl_linux_aarch64_sources)' ],
+ }],
['target_arch == "ia32"', {
'conditions': [
['OS == "mac"', {
@@ -77,7 +80,7 @@
}],
]
}],
- ['target_arch != "arm" and target_arch != "ia32" and target_arch != "x64"', {
+ ['target_arch != "arm" and target_arch != "ia32" and target_arch != "x64" and target_arch != "arm64"', {
'defines': [ 'OPENSSL_NO_ASM' ],
}],
],

Powered by Google App Engine
This is Rietveld 408576698