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

Unified Diff: third_party/boringssl/BUILD.gn

Issue 1888763002: Build 64bit browser for Android with clang for ARMv8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch Set 2 - Build 64bit browser for Android with clang for ARMv8 Created 4 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
Index: third_party/boringssl/BUILD.gn
diff --git a/third_party/boringssl/BUILD.gn b/third_party/boringssl/BUILD.gn
index 9b9badaa78099f08779fc50bee12906e33e37062..a52007e4ca4406153979ecaf7b48a8b96cfab1db 100644
--- a/third_party/boringssl/BUILD.gn
+++ b/third_party/boringssl/BUILD.gn
@@ -67,9 +67,9 @@ if (is_win && !is_msan) {
asmflags = []
include_dirs = [ "src/include" ]
- if (current_cpu == "arm" && is_clang) {
+ if ((current_cpu == "arm" || current_cpu == "arm64") && is_clang) {
# TODO(hans) Enable integrated-as (crbug.com/124610).
- asmflags += [ "-fno-integrated-as" ]
+ # asmflags += [ "-fno-integrated-as" ]
if (is_android) {
rebased_android_toolchain_root =
rebase_path(android_toolchain_root, root_build_dir)

Powered by Google App Engine
This is Rietveld 408576698