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

Unified Diff: third_party/boringssl/boringssl.gyp

Issue 1064693002: Compile BoringSSL for arm64 iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 8 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
« no previous file with comments | « third_party/boringssl/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/boringssl.gyp
diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
index 845a920589a2a9a393d870cf12e0671702dadf4e..b20d0d4ef5e9da8477fc0780444335eef7ae1680 100644
--- a/third_party/boringssl/boringssl.gyp
+++ b/third_party/boringssl/boringssl.gyp
@@ -27,10 +27,22 @@
],
}],
['target_arch == "arm"', {
- 'sources': [ '<@(boringssl_linux_arm_sources)' ],
+ 'conditions': [
+ ['OS == "linux" or OS == "android"', {
+ 'sources': [ '<@(boringssl_linux_arm_sources)' ],
+ }, {
+ 'defines': [ 'OPENSSL_NO_ASM' ],
+ }],
+ ],
}],
['target_arch == "arm64"', {
- 'sources': [ '<@(boringssl_linux_aarch64_sources)' ],
+ 'conditions': [
+ ['OS == "linux" or OS == "android"', {
+ 'sources': [ '<@(boringssl_linux_aarch64_sources)' ],
+ }, {
+ 'defines': [ 'OPENSSL_NO_ASM' ],
+ }],
+ ],
}],
['target_arch == "ia32"', {
'conditions': [
« no previous file with comments | « third_party/boringssl/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698