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

Unified Diff: android_webview/config.gni

Issue 2331573003: build full 64bit WebView (Closed)
Patch Set: remove a unnecessary comment 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
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
+}

Powered by Google App Engine
This is Rietveld 408576698