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

Unified Diff: third_party/boringssl/BUILD.gn

Issue 1126663002: Use Mac assembly for x86 iOS simulator targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a bit 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 | « no previous file | third_party/boringssl/boringssl.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/BUILD.gn
diff --git a/third_party/boringssl/BUILD.gn b/third_party/boringssl/BUILD.gn
index b25d8d509930fafe14915fda5386ba18c6dd8849..cd398de62b8f4af43a457a6ae29a1c9018439815 100644
--- a/third_party/boringssl/BUILD.gn
+++ b/third_party/boringssl/BUILD.gn
@@ -71,7 +71,7 @@ component("boringssl") {
]
if (current_cpu == "x64") {
- if (is_mac) {
+ if (is_mac || is_ios) {
sources += gypi_values.boringssl_mac_x86_64_sources
} else if (is_linux || is_android) {
sources += gypi_values.boringssl_linux_x86_64_sources
@@ -81,7 +81,7 @@ component("boringssl") {
defines += [ "OPENSSL_NO_ASM" ]
}
} else if (current_cpu == "x86") {
- if (is_mac) {
+ if (is_mac || is_ios) {
sources += gypi_values.boringssl_mac_x86_sources
} else if (is_linux || is_android) {
sources += gypi_values.boringssl_linux_x86_sources
« no previous file with comments | « no previous file | third_party/boringssl/boringssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698