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

Side by Side Diff: build/config/features.gni

Issue 2396663002: Reland gvr upgrade (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « DEPS ('k') | chrome/browser/android/vr_shell/ui_elements.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # ============================================= 5 # =============================================
6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
7 # ============================================= 7 # =============================================
8 # 8 #
9 # These flags are effectively global. Your feature flag should go near the 9 # These flags are effectively global. Your feature flag should go near the
10 # code it controls. Most of these items are here now because they control 10 # code it controls. Most of these items are here now because they control
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 # Enable printing with print preview. It does not imply 111 # Enable printing with print preview. It does not imply
112 # enable_basic_printing. It's possible to build Chrome with preview only. 112 # enable_basic_printing. It's possible to build Chrome with preview only.
113 enable_print_preview = !is_android && !is_chromecast && !is_ios 113 enable_print_preview = !is_android && !is_chromecast && !is_ios
114 114
115 # Whether or not to use external popup menu. 115 # Whether or not to use external popup menu.
116 use_external_popup_menu = is_android || is_mac 116 use_external_popup_menu = is_android || is_mac
117 117
118 # Enable WebVR support by default on Android 118 # Enable WebVR support by default on Android
119 # Still requires command line flag to access API 119 # Still requires command line flag to access API
120 enable_webvr = is_android && is_component_build && 120 enable_webvr = is_android && is_component_build && is_debug &&
brettw 2016/10/14 20:01:20 In addition to the lack of review, please update t
bshe 2016/10/14 21:12:39 will do in a new CL.
121 (current_cpu == "x86" || current_cpu == "x64" || 121 (current_cpu == "x86" || current_cpu == "x64" ||
122 current_cpu == "arm" || current_cpu == "arm64") 122 current_cpu == "arm" || current_cpu == "arm64")
123 } 123 }
124 124
125 # Additional dependent variables ----------------------------------------------- 125 # Additional dependent variables -----------------------------------------------
126 126
127 # Enable the spell checker. 127 # Enable the spell checker.
128 enable_spellcheck = !is_ios 128 enable_spellcheck = !is_ios
129 129
130 # Use the operating system's spellchecker rather than hunspell. 130 # Use the operating system's spellchecker rather than hunspell.
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 enable_configuration_policy = !is_ios 175 enable_configuration_policy = !is_ios
176 176
177 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build 177 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build
178 # 178 #
179 # ============================================= 179 # =============================================
180 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 180 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
181 # ============================================= 181 # =============================================
182 # 182 #
183 # See comment at the top. 183 # See comment at the top.
OLDNEW
« no previous file with comments | « DEPS ('k') | chrome/browser/android/vr_shell/ui_elements.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698