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

Unified Diff: build/config/features.gni

Issue 1377333002: Make cld2_table_size configurable in GN builds (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 | « no previous file | 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 9a29d5e11fb92eb9e6c63ea4f370300fa56d1cea..c50aebe510c09ba9551fc2fcbbfc29a2cebb1ec7 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -21,6 +21,12 @@ if (is_android) {
}
declare_args() {
+ if (is_android || is_ios) {
brettw 2015/10/01 17:24:22 I notice this is only used in third_party/cld_2/BU
Tomasz Moniuszko 2015/10/02 07:56:41 Done. It seems that there was another cld2_table_s
+ cld2_table_size = 0 # Small, accurate tables
+ } else {
+ cld2_table_size = 2 # Larger, more accurate tables
+ }
+
# Multicast DNS.
enable_mdns = is_win || is_linux
@@ -125,12 +131,6 @@ 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 && !is_chromecast
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698