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

Side by Side Diff: build/common.gypi

Issue 1861233003: Prepare for building with enable_app_list=0 on Desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop patchset dependency, rebase to master 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'enable_hidpi%': 1, 252 'enable_hidpi%': 1,
253 }], 253 }],
254 254
255 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux, 255 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux,
256 # and Mac. 256 # and Mac.
257 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac"', { 257 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac"', {
258 'enable_topchrome_md%': 1, 258 'enable_topchrome_md%': 1,
259 }], 259 }],
260 260
261 # Enable App Launcher everywhere but mobile. 261 # Enable App Launcher everywhere but mobile.
262 ['OS!="ios" and OS!="android"', { 262 ['OS!="ios" and OS!="android" and chromecast==0', {
Matt Giuca 2016/05/03 07:31:15 Delightful! Can we just change this to a positive
tapted 2016/05/04 09:55:43 That becomes tricky since chromecast \implies{} OS
Matt Giuca 2016/05/05 00:26:30 Acknowledged.
263 'enable_app_list%': 1, 263 'enable_app_list%': 1,
264 }, { 264 }, {
265 'enable_app_list%': 0, 265 'enable_app_list%': 0,
266 }], 266 }],
267 267
268 ['use_aura==1 and OS!="android"', { 268 ['use_aura==1 and OS!="android"', {
269 'use_default_render_theme%': 1, 269 'use_default_render_theme%': 1,
270 }, { 270 }, {
271 'use_default_render_theme%': 0, 271 'use_default_render_theme%': 0,
272 }], 272 }],
(...skipping 6034 matching lines...) Expand 10 before | Expand all | Expand 10 after
6307 # settings in target dicts. SYMROOT is a special case, because many other 6307 # settings in target dicts. SYMROOT is a special case, because many other
6308 # Xcode variables depend on it, including variables such as 6308 # Xcode variables depend on it, including variables such as
6309 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6309 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6310 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6310 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6311 # files to appear (when present) in the UI as actual files and not red 6311 # files to appear (when present) in the UI as actual files and not red
6312 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6312 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6313 # and therefore SYMROOT, needs to be set at the project level. 6313 # and therefore SYMROOT, needs to be set at the project level.
6314 'SYMROOT': '<(DEPTH)/xcodebuild', 6314 'SYMROOT': '<(DEPTH)/xcodebuild',
6315 }, 6315 },
6316 } 6316 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | build/config/features.gni » ('j') | build/config/features.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698