| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 'use_aura%': 1, | 206 'use_aura%': 1, |
| 207 'use_ash%': 0, | 207 'use_ash%': 0, |
| 208 'toolkit_views%': 0, | 208 'toolkit_views%': 0, |
| 209 }], | 209 }], |
| 210 | 210 |
| 211 # Enable HiDPI on Mac OS, Chrome OS and Windows. | 211 # Enable HiDPI on Mac OS, Chrome OS and Windows. |
| 212 ['OS=="mac" or chromeos==1 or OS=="win"', { | 212 ['OS=="mac" or chromeos==1 or OS=="win"', { |
| 213 'enable_hidpi%': 1, | 213 'enable_hidpi%': 1, |
| 214 }], | 214 }], |
| 215 | 215 |
| 216 # Enable the OpenSSL backend on Mac OS and Windows. | 216 # Enable the OpenSSL backend on Mac OS. |
| 217 ['OS=="mac" or OS=="win"', { | 217 ['OS=="mac"', { |
| 218 'use_openssl%': 1, | 218 'use_openssl%': 1, |
| 219 }], | 219 }], |
| 220 | 220 |
| 221 # Enable App Launcher everywhere but mobile. | 221 # Enable App Launcher everywhere but mobile. |
| 222 ['OS!="ios" and OS!="android"', { | 222 ['OS!="ios" and OS!="android"', { |
| 223 'enable_app_list%': 1, | 223 'enable_app_list%': 1, |
| 224 }, { | 224 }, { |
| 225 'enable_app_list%': 0, | 225 'enable_app_list%': 0, |
| 226 }], | 226 }], |
| 227 | 227 |
| (...skipping 5617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5845 # settings in target dicts. SYMROOT is a special case, because many other | 5845 # settings in target dicts. SYMROOT is a special case, because many other |
| 5846 # Xcode variables depend on it, including variables such as | 5846 # Xcode variables depend on it, including variables such as |
| 5847 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5847 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5848 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5848 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5849 # files to appear (when present) in the UI as actual files and not red | 5849 # files to appear (when present) in the UI as actual files and not red |
| 5850 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5850 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5851 # and therefore SYMROOT, needs to be set at the project level. | 5851 # and therefore SYMROOT, needs to be set at the project level. |
| 5852 'SYMROOT': '<(DEPTH)/xcodebuild', | 5852 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5853 }, | 5853 }, |
| 5854 } | 5854 } |
| OLD | NEW |