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

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

Issue 1916493003: GN configs for ipc fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reword doc + rebase Created 4 years, 8 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 use_gconf = is_linux && !is_chromeos && !is_chromecast 109 use_gconf = is_linux && !is_chromeos && !is_chromecast
110 110
111 use_gio = is_linux && !is_chromeos && !is_chromecast 111 use_gio = is_linux && !is_chromeos && !is_chromecast
112 112
113 # Enable basic printing support and UI. 113 # Enable basic printing support and UI.
114 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios 114 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios
115 115
116 # Enable printing with print preview. It does not imply 116 # Enable printing with print preview. It does not imply
117 # enable_basic_printing. It's possible to build Chrome with preview only. 117 # enable_basic_printing. It's possible to build Chrome with preview only.
118 enable_print_preview = !is_android && !is_chromecast && !is_ios 118 enable_print_preview = !is_android && !is_chromecast && !is_ios
119
120 # Don't build IPC fuzzer by default.
Nico 2016/04/22 21:17:53 can you remind me again why this is off by default
Oliver Chang 2016/04/22 21:30:32 It changes some behaviour (based on the ENABLE_IPC
121 enable_ipc_fuzzer = false
Dirk Pranke 2016/04/22 23:18:11 In GN we don't want to add arguments globally if t
Oliver Chang 2016/04/25 18:16:06 OK, done. I'm a little concerned about header file
Dirk Pranke 2016/04/25 18:48:58 If the defines are needed in public headers (i.e.,
Oliver Chang 2016/04/25 19:25:50 Thanks, I've changed ipc/BUILD.gn to use public_co
119 } 122 }
120 123
121 # Additional dependent variables ----------------------------------------------- 124 # Additional dependent variables -----------------------------------------------
122 125
123 # Set the version of CLD. 126 # Set the version of CLD.
124 # 1: (DEPRECATED! See http://crbug.com/528305 for info) Use only CLD1. 127 # 1: (DEPRECATED! See http://crbug.com/528305 for info) Use only CLD1.
125 # 2: Use only CLD2. 128 # 2: Use only CLD2.
126 cld_version = 2 129 cld_version = 2
127 130
128 # Enable the spell checker. 131 # Enable the spell checker.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 enable_chromevox_next = false 173 enable_chromevox_next = false
171 174
172 # Use brlapi from brltty for braille display support. 175 # Use brlapi from brltty for braille display support.
173 use_brlapi = is_chromeos 176 use_brlapi = is_chromeos
174 177
175 # Enable WebVR support by default on Android 178 # Enable WebVR support by default on Android
176 # Still requires command line flag to access API 179 # Still requires command line flag to access API
177 enable_webvr = is_android 180 enable_webvr = is_android
178 181
179 enable_configuration_policy = !is_ios 182 enable_configuration_policy = !is_ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698