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

Unified Diff: build/common.gypi

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
« no previous file with comments | « no previous file | build/config/android/BUILD.gn » ('j') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index cce7b3ca56ed001a1e3f08c54cc1e076e68aee53..84d9514d0eab2b76a832da9d7c07fa31a8b14db6 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -4912,8 +4912,18 @@
'-target i686-linux-androideabi',
],
}],
+ # Place holder for arm64 support, not tested.
+ # TODO: Enable clang support for Android Arm64. http://crbug.com/539781
+ ['target_arch=="arm64"', {
+ 'cflags': [
+ '-target aarch64-linux-androideabi',
+ ],
+ 'ldflags': [
+ '-target aarch64-linux-androideabi',
+ ],
+ }],
# 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
['target_arch=="x64"', {
'cflags': [
'-target x86_64-linux-androideabi',
« no previous file with comments | « no previous file | build/config/android/BUILD.gn » ('j') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698