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

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

Issue 1992393002: Enable external popup menu in Blimp, part 1/2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 # This file contains Chrome-feature-related build flags (see ui.gni for 5 # This file contains Chrome-feature-related build flags (see ui.gni for
6 # UI-related ones). These should theoretically be moved to the build files of 6 # UI-related ones). These should theoretically be moved to the build files of
7 # the features themselves. 7 # the features themselves.
8 # 8 #
9 # However, today we have many "bad" dependencies on some of these flags from, 9 # However, today we have many "bad" dependencies on some of these flags from,
10 # e.g. base, so they need to be global to match the GYP configuration. Also, 10 # e.g. base, so they need to be global to match the GYP configuration. Also,
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 use_gconf = is_linux && !is_chromeos && !is_chromecast 107 use_gconf = is_linux && !is_chromeos && !is_chromecast
108 108
109 use_gio = is_linux && !is_chromeos && !is_chromecast 109 use_gio = is_linux && !is_chromeos && !is_chromecast
110 110
111 # Enable basic printing support and UI. 111 # Enable basic printing support and UI.
112 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios 112 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios
113 113
114 # Enable printing with print preview. It does not imply 114 # Enable printing with print preview. It does not imply
115 # enable_basic_printing. It's possible to build Chrome with preview only. 115 # enable_basic_printing. It's possible to build Chrome with preview only.
116 enable_print_preview = !is_android && !is_chromecast && !is_ios 116 enable_print_preview = !is_android && !is_chromecast && !is_ios
117
118 use_external_popup_menu = false
117 } 119 }
118 120
119 # Additional dependent variables ----------------------------------------------- 121 # Additional dependent variables -----------------------------------------------
120 122
121 # Enable the spell checker. 123 # Enable the spell checker.
122 enable_spellcheck = !is_ios 124 enable_spellcheck = !is_ios
123 125
124 # Use the operating system's spellchecker rather than hunspell. 126 # Use the operating system's spellchecker rather than hunspell.
125 use_browser_spellchecker = is_android || is_mac 127 use_browser_spellchecker = is_android || is_mac
126 128
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 use_brlapi = is_chromeos 168 use_brlapi = is_chromeos
167 169
168 # Enable WebVR support by default on Android 170 # Enable WebVR support by default on Android
169 # Still requires command line flag to access API 171 # Still requires command line flag to access API
170 enable_webvr = is_android 172 enable_webvr = is_android
171 173
172 enable_configuration_policy = !is_ios 174 enable_configuration_policy = !is_ios
173 175
174 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build 176 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build
175 enable_mac_crash_collection = is_mac && is_chrome_branded && is_official_build 177 enable_mac_crash_collection = is_mac && is_chrome_branded && is_official_build
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698