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

Unified Diff: build/config/features.gni

Issue 1306053014: Add cld2_table_size variable to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/features.gni
diff --git a/build/config/features.gni b/build/config/features.gni
index f6469e234edb5aeb46ffd0d60dcdc8b4495e2a25..a32d8112c2ce5c46b8f4f7315f47efff278c810b 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -129,6 +129,12 @@ declare_args() {
# 2: Use only CLD2.
cld_version = 2
+if (is_android || is_ios) {
+ cld2_table_size = 0 # Small, accurate tables
+} else {
+ cld2_table_size = 2 # Larger, more accurate tables
+}
+
# libudev usage. This currently only affects the content layer.
use_udev = is_linux
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698