Chromium Code Reviews| Index: android_webview/config.gni |
| diff --git a/android_webview/config.gni b/android_webview/config.gni |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2c9e7a4afad2aae4e75712cc4173ba8f7a93e5d9 |
| --- /dev/null |
| +++ b/android_webview/config.gni |
| @@ -0,0 +1,15 @@ |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//build/config/android/config.gni") |
| + |
| +declare_args() { |
| + # Only build 64-bit binaries in 64-bit WebView APK. 32-bit apps will not be |
| + # supported; for development only. |
| + build_64bit_only_webview = false |
|
agrieve
2016/09/19 14:29:18
It would be better to have:
build_64bit_only_web
michaelbai
2016/09/19 21:22:26
Thanks, since we go one variable, I will do next t
|
| +} |
| + |
| +if (merge_64bit_webview_and_monochrome) { |
| + build_64bit_only_webview = true |
| +} |