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

Side by Side Diff: build/config/BUILD.gn

Issue 2406303003: Move enable_app_list to a buildflag. (Closed)
Patch Set: More grit defines 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 | « BUILD.gn ('k') | build/config/features.gni » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("//build/config/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/chromecast_build.gni") 7 import("//build/config/chromecast_build.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/dcheck_always_on.gni") 9 import("//build/config/dcheck_always_on.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 191 }
192 if (enable_themes) { 192 if (enable_themes) {
193 defines += [ "ENABLE_THEMES=1" ] 193 defines += [ "ENABLE_THEMES=1" ]
194 } 194 }
195 if (enable_session_service) { 195 if (enable_session_service) {
196 defines += [ "ENABLE_SESSION_SERVICE=1" ] 196 defines += [ "ENABLE_SESSION_SERVICE=1" ]
197 } 197 }
198 if (enable_rlz) { 198 if (enable_rlz) {
199 defines += [ "ENABLE_RLZ" ] 199 defines += [ "ENABLE_RLZ" ]
200 } 200 }
201 if (enable_app_list) {
202 defines += [ "ENABLE_APP_LIST=1" ]
203 }
204 if (enable_supervised_users) { 201 if (enable_supervised_users) {
205 defines += [ "ENABLE_SUPERVISED_USERS=1" ] 202 defines += [ "ENABLE_SUPERVISED_USERS=1" ]
206 } 203 }
207 if (enable_image_loader_extension) { 204 if (enable_image_loader_extension) {
208 defines += [ "IMAGE_LOADER_EXTENSION=1" ] 205 defines += [ "IMAGE_LOADER_EXTENSION=1" ]
209 } 206 }
210 if (enable_wayland_server) { 207 if (enable_wayland_server) {
211 defines += [ "ENABLE_WAYLAND_SERVER=1" ] 208 defines += [ "ENABLE_WAYLAND_SERVER=1" ]
212 } 209 }
213 if (enable_wifi_display) { 210 if (enable_wifi_display) {
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 # file doesn't exist, no error will be generated (probably MS tested this 464 # file doesn't exist, no error will be generated (probably MS tested this
468 # case but forgot the other one?). To reproduce this error, do a build, 465 # case but forgot the other one?). To reproduce this error, do a build,
469 # then delete the precompile.c.obj file, then build again. 466 # then delete the precompile.c.obj file, then build again.
470 cflags_c = [ "/wd4206" ] 467 cflags_c = [ "/wd4206" ]
471 } else if (is_mac) { 468 } else if (is_mac) {
472 precompiled_header = "build/precompile.h" 469 precompiled_header = "build/precompile.h"
473 precompiled_source = "//build/precompile.h" 470 precompiled_source = "//build/precompile.h"
474 } 471 }
475 } 472 }
476 } 473 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698