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

Side by Side Diff: build/common.gypi

Issue 1012483004: ChromeOS implies Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits Created 5 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
« no previous file with comments | « no previous file | build/config/ui.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) 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 # conversion is done), some of the things which are now controlled by 97 # conversion is done), some of the things which are now controlled by
98 # 'branding', such as symbol generation, will need to be refactored 98 # 'branding', such as symbol generation, will need to be refactored
99 # based on 'buildtype' (i.e. we don't care about saving symbols for 99 # based on 'buildtype' (i.e. we don't care about saving symbols for
100 # non-Official # builds). 100 # non-Official # builds).
101 'buildtype%': 'Dev', 101 'buildtype%': 'Dev',
102 102
103 # Override branding to select the desired branding flavor. 103 # Override branding to select the desired branding flavor.
104 'branding%': 'Chromium', 104 'branding%': 'Chromium',
105 105
106 'conditions': [ 106 'conditions': [
107 # ChromeOS and Windows use Aura and Ash. 107 # Windows and Linux (including Chrome OS) use Aura and Ash.
108 ['chromeos==1 or OS=="win" or OS=="linux"', { 108 ['OS=="win" or OS=="linux"', {
109 'use_ash%': 1, 109 'use_ash%': 1,
110 'use_aura%': 1, 110 'use_aura%': 1,
111 }], 111 }],
112 112
113 ['chromecast==1 and OS!="android"', { 113 ['chromecast==1 and OS!="android"', {
114 'embedded%': 1, 114 'embedded%': 1,
115 'use_ozone%': 1, 115 'use_ozone%': 1,
116 }], 116 }],
117 117
118 # Ozone uses Aura. 118 # Ozone uses Aura.
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'toolkit_views%': 0, 218 'toolkit_views%': 0,
219 }], 219 }],
220 220
221 # Embedded builds use aura without ash or views. 221 # Embedded builds use aura without ash or views.
222 ['embedded==1', { 222 ['embedded==1', {
223 'use_aura%': 1, 223 'use_aura%': 1,
224 'use_ash%': 0, 224 'use_ash%': 0,
225 'toolkit_views%': 0, 225 'toolkit_views%': 0,
226 }], 226 }],
227 227
228 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux. 228 # Enable HiDPI on Mac OS, Windows and Linux (including Chrome OS).
229 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { 229 ['OS=="mac" or OS=="win" or OS=="linux"', {
230 'enable_hidpi%': 1, 230 'enable_hidpi%': 1,
231 }], 231 }],
232 232
233 # Enable Top Chrome Material Design on Chrome OS, and Windows. 233 # Enable Top Chrome Material Design on Chrome OS, and Windows.
234 ['chromeos==1 or OS=="win"', { 234 ['chromeos==1 or OS=="win"', {
235 'enable_topchrome_md%': 1, 235 'enable_topchrome_md%': 1,
236 }], 236 }],
237 237
238 # Enable the OpenSSL backend on Mac OS and Windows. 238 # Enable the OpenSSL backend on Mac OS and Windows.
239 ['OS=="mac" or OS=="win"', { 239 ['OS=="mac" or OS=="win"', {
(...skipping 5966 matching lines...) Expand 10 before | Expand all | Expand 10 after
6206 # settings in target dicts. SYMROOT is a special case, because many other 6206 # settings in target dicts. SYMROOT is a special case, because many other
6207 # Xcode variables depend on it, including variables such as 6207 # Xcode variables depend on it, including variables such as
6208 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6208 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6209 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6209 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6210 # files to appear (when present) in the UI as actual files and not red 6210 # files to appear (when present) in the UI as actual files and not red
6211 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6211 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6212 # and therefore SYMROOT, needs to be set at the project level. 6212 # and therefore SYMROOT, needs to be set at the project level.
6213 'SYMROOT': '<(DEPTH)/xcodebuild', 6213 'SYMROOT': '<(DEPTH)/xcodebuild',
6214 }, 6214 },
6215 } 6215 }
OLDNEW
« no previous file with comments | « no previous file | build/config/ui.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698