OLD | NEW |
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, Chrome OS, Windows and Linux. |
229 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { | 229 ['OS=="mac" or chromeos==1 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, Windows, and Linux. |
234 ['chromeos==1 or OS=="win"', { | 234 ['chromeos==1 or OS=="win" or OS=="linux"', { |
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"', { |
240 'use_openssl%': 1, | 240 'use_openssl%': 1, |
241 }], | 241 }], |
242 | 242 |
243 # Enable App Launcher everywhere but mobile. | 243 # Enable App Launcher everywhere but mobile. |
244 ['OS!="ios" and OS!="android"', { | 244 ['OS!="ios" and OS!="android"', { |
(...skipping 5952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6197 # settings in target dicts. SYMROOT is a special case, because many other | 6197 # settings in target dicts. SYMROOT is a special case, because many other |
6198 # Xcode variables depend on it, including variables such as | 6198 # Xcode variables depend on it, including variables such as |
6199 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6199 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6200 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6200 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6201 # files to appear (when present) in the UI as actual files and not red | 6201 # files to appear (when present) in the UI as actual files and not red |
6202 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6202 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6203 # and therefore SYMROOT, needs to be set at the project level. | 6203 # and therefore SYMROOT, needs to be set at the project level. |
6204 'SYMROOT': '<(DEPTH)/xcodebuild', | 6204 'SYMROOT': '<(DEPTH)/xcodebuild', |
6205 }, | 6205 }, |
6206 } | 6206 } |
OLD | NEW |