Chromium Code Reviews| 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. |