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

Unified Diff: platform_tools/android/gyp_gen/makefile_writer.py

Issue 229393002: Fixes to Android.mk generation for arm64. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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: platform_tools/android/gyp_gen/makefile_writer.py
diff --git a/platform_tools/android/gyp_gen/makefile_writer.py b/platform_tools/android/gyp_gen/makefile_writer.py
index f4cdbef44dd352ef7fce07d7bcf202046961db0a..1b977ca1e65efd323d36a57a91156d010e28d5a1 100644
--- a/platform_tools/android/gyp_gen/makefile_writer.py
+++ b/platform_tools/android/gyp_gen/makefile_writer.py
@@ -195,11 +195,6 @@ def write_android_mk(target_dir, common, deviations_from_common):
f.write('\tLOCAL_CFLAGS += -DNO_FALLBACK_FONT\n')
f.write('endif\n\n')
- f.write('ifeq ($(TARGET_ARCH),arm64)\n')
- f.write(' $(warning TODOArm64: Unlike arm32, arm64 has no inline'
- ' assembly for performance critical code.)\n')
- f.write('endif\n\n')
-
write_local_vars(f, common, False, None)
for data in deviations_from_common:

Powered by Google App Engine
This is Rietveld 408576698