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

Side by Side Diff: build/common.gypi

Issue 334723005: Organize file lists in chrome_browser_ui.gypi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | chrome/chrome_browser_ui.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'use_aura%': 1, 187 'use_aura%': 1,
188 'use_ash%': 0, 188 'use_ash%': 0,
189 'toolkit_views%': 0, 189 'toolkit_views%': 0,
190 }], 190 }],
191 191
192 # Enable HiDPI on Mac OS, Chrome OS and Windows. 192 # Enable HiDPI on Mac OS, Chrome OS and Windows.
193 ['OS=="mac" or chromeos==1 or OS=="win"', { 193 ['OS=="mac" or chromeos==1 or OS=="win"', {
194 'enable_hidpi%': 1, 194 'enable_hidpi%': 1,
195 }], 195 }],
196 196
197 # Enable App Launcher on ChromeOS, Windows and OSX. 197 # Enable App Launcher everywhere but mobile.
198 # On Linux, enable App Launcher for the Aura build. 198 ['OS!="ios" and OS!="android"', {
199 ['use_ash==1 or OS=="win" or OS=="mac" or (desktop_linux==1 and use_au ra==1)', {
200 'enable_app_list%': 1, 199 'enable_app_list%': 1,
201 }, { 200 }, {
202 'enable_app_list%': 0, 201 'enable_app_list%': 0,
203 }], 202 }],
204 203
205 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro id")', { 204 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro id")', {
206 'use_default_render_theme%': 1, 205 'use_default_render_theme%': 1,
207 }, { 206 }, {
208 'use_default_render_theme%': 0, 207 'use_default_render_theme%': 0,
209 }], 208 }],
(...skipping 5337 matching lines...) Expand 10 before | Expand all | Expand 10 after
5547 # settings in target dicts. SYMROOT is a special case, because many other 5546 # settings in target dicts. SYMROOT is a special case, because many other
5548 # Xcode variables depend on it, including variables such as 5547 # Xcode variables depend on it, including variables such as
5549 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5548 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5550 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5549 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5551 # files to appear (when present) in the UI as actual files and not red 5550 # files to appear (when present) in the UI as actual files and not red
5552 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5551 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5553 # and therefore SYMROOT, needs to be set at the project level. 5552 # and therefore SYMROOT, needs to be set at the project level.
5554 'SYMROOT': '<(DEPTH)/xcodebuild', 5553 'SYMROOT': '<(DEPTH)/xcodebuild',
5555 }, 5554 },
5556 } 5555 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | chrome/chrome_browser_ui.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698