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

Unified Diff: build/config/android/BUILD.gn

Issue 1366883002: [Reland] Post loading tasks on the appropriate WebFrameScheduler's queue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix UAF in BackgroundHTMLParser Created 5 years, 2 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: build/config/android/BUILD.gn
diff --git a/build/config/android/BUILD.gn b/build/config/android/BUILD.gn
index c743f3903594180bd4ac6a42fd5c8dae18a573de..4cabe117b543d819c26dc62f600d91f1d828af39 100644
--- a/build/config/android/BUILD.gn
+++ b/build/config/android/BUILD.gn
@@ -92,10 +92,11 @@ config("compiler") {
abi_target = "i686-linux-androideabi"
} else if (current_cpu == "arm64") {
# Place holder for arm64 support, not tested.
+ # TODO: Enable clang support for Android Arm64. http://crbug.com/539781
abi_target = "aarch64-linux-androideabi"
} else if (current_cpu == "x64") {
# Place holder for x64 support, not tested.
- # TODO: Enable clang support for Android x64. http://crbug.com/346626
+ # TODO: Enable clang support for Android x64. http://crbug.com/539781
abi_target = "x86_64-linux-androideabi"
} else if (current_cpu == "mipsel") {
# Place holder for mips support, not tested.

Powered by Google App Engine
This is Rietveld 408576698