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

Unified Diff: build/toolchain.gypi

Issue 598723002: Enable FDO for v8 in android build. (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Created 6 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain.gypi
diff --git a/build/toolchain.gypi b/build/toolchain.gypi
index eddc32979fb4524ac6810afa04d071c6813d90ed..7f3b9e52d91dfab36ad3297e147d94f039664d0b 100644
--- a/build/toolchain.gypi
+++ b/build/toolchain.gypi
@@ -621,6 +621,12 @@
'cflags': [ '-m32' ],
'ldflags': [ '-m32' ],
}],
+ # Enable feedback-directed optimisation when building in android.
+ [ 'android_webview_build == 1', {
+ 'aosp_build_settings': {
+ 'LOCAL_FDO_SUPPORT': 'true',
+ },
+ }],
],
'xcode_settings': {
'ARCHS': [ 'i386' ],
@@ -645,6 +651,12 @@
'cflags': [ '-m64' ],
'ldflags': [ '-m64' ],
}],
+ # Enable feedback-directed optimisation when building in android.
+ [ 'android_webview_build == 1', {
+ 'aosp_build_settings': {
+ 'LOCAL_FDO_SUPPORT': 'true',
+ },
+ }],
]
}],
],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698