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

Side by Side Diff: build/common.gypi

Issue 659883002: Enable hidpi on Linux, refactor a bit on Windows to share Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: constants Created 6 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
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }], 198 }],
199 199
200 # Embedded builds use aura without ash or views. 200 # Embedded builds use aura without ash or views.
201 ['embedded==1', { 201 ['embedded==1', {
202 'use_aura%': 1, 202 'use_aura%': 1,
203 'use_ash%': 0, 203 'use_ash%': 0,
204 'toolkit_views%': 0, 204 'toolkit_views%': 0,
205 }], 205 }],
206 206
207 # Enable HiDPI on Mac OS, Chrome OS and Windows. 207 # Enable HiDPI on Mac OS, Chrome OS and Windows.
208 ['OS=="mac" or chromeos==1 or OS=="win"', { 208 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', {
209 'enable_hidpi%': 1, 209 'enable_hidpi%': 1,
210 }], 210 }],
211 211
212 # Enable the OpenSSL backend on Mac OS. 212 # Enable the OpenSSL backend on Mac OS.
213 ['OS=="mac"', { 213 ['OS=="mac"', {
214 'use_openssl%': 1, 214 'use_openssl%': 1,
215 }], 215 }],
216 216
217 # Enable App Launcher everywhere but mobile. 217 # Enable App Launcher everywhere but mobile.
218 ['OS!="ios" and OS!="android"', { 218 ['OS!="ios" and OS!="android"', {
(...skipping 5529 matching lines...) Expand 10 before | Expand all | Expand 10 after
5748 # settings in target dicts. SYMROOT is a special case, because many other 5748 # settings in target dicts. SYMROOT is a special case, because many other
5749 # Xcode variables depend on it, including variables such as 5749 # Xcode variables depend on it, including variables such as
5750 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5750 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5751 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5751 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5752 # files to appear (when present) in the UI as actual files and not red 5752 # files to appear (when present) in the UI as actual files and not red
5753 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5753 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5754 # and therefore SYMROOT, needs to be set at the project level. 5754 # and therefore SYMROOT, needs to be set at the project level.
5755 'SYMROOT': '<(DEPTH)/xcodebuild', 5755 'SYMROOT': '<(DEPTH)/xcodebuild',
5756 }, 5756 },
5757 } 5757 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698