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

Unified Diff: build/config/android/config.gni

Issue 2331573003: build full 64bit WebView (Closed)
Patch Set: build full 64bit WebView Created 4 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
« android_webview/BUILD.gn ('K') | « android_webview/system_webview_apk_tmpl.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/config.gni
diff --git a/build/config/android/config.gni b/build/config/android/config.gni
index 6a16eb2d68bc82f3c147fcd0ec9e2c2247297525..aec30a83ef2675a9727780f05e6ff1634ac25075 100644
--- a/build/config/android/config.gni
+++ b/build/config/android/config.gni
@@ -133,6 +133,9 @@ if (is_android) {
# Adds intrumentation to each function. Writes a file with the order that
# functions are called at startup.
use_order_profiling = false
+
+ # Only build 64-bit binaries in 64-bit WebView APK.
Torne 2016/09/16 14:04:18 Maybe "Only build 64-bit binaries in 64-bit WebVie
michaelbai 2016/09/16 16:14:22 Done.
+ build_64bit_only_webview = false
}
# We need a second declare_args block to make sure we are using the overridden
@@ -142,6 +145,11 @@ if (is_android) {
enable_incremental_dx = is_java_debug
}
+ if (defined(merge_64bit_webview_and_monochrome) &&
Torne 2016/09/16 14:04:18 I think you should also just declare this variable
michaelbai 2016/09/16 16:14:22 It is not for hiding something, I think this shoul
Torne 2016/09/16 16:35:33 But we will at some point.
michaelbai 2016/09/16 20:05:55 Fair enough, everything is in public
+ merge_64bit_webview_and_monochrome) {
+ build_64bit_only_webview = true
+ }
+
# Neither of these should ever be used for release builds since they are
# somewhat experimental and dx --incremental is known to not produce
# byte-for-byte identical output.
« android_webview/BUILD.gn ('K') | « android_webview/system_webview_apk_tmpl.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698