Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/android/config.gni") | |
| 6 | |
| 7 declare_args() { | |
| 8 # Only build 64-bit binaries in 64-bit WebView APK. 32-bit apps will not be | |
| 9 # supported; for development only. | |
| 10 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
| |
| 11 } | |
| 12 | |
| 13 if (merge_64bit_webview_and_monochrome) { | |
| 14 build_64bit_only_webview = true | |
| 15 } | |
| OLD | NEW |