| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 # below for MIPS targets. | 180 # below for MIPS targets. |
| 181 'mips_arch_variant%': '', | 181 'mips_arch_variant%': '', |
| 182 | 182 |
| 183 'conditions': [ | 183 'conditions': [ |
| 184 # Ash needs Aura. | 184 # Ash needs Aura. |
| 185 ['use_aura==0', { | 185 ['use_aura==0', { |
| 186 'use_ash%': 0, | 186 'use_ash%': 0, |
| 187 }], | 187 }], |
| 188 | 188 |
| 189 # Set default value of toolkit_views based on OS. | 189 # Set default value of toolkit_views based on OS. |
| 190 ['OS=="win" or chromeos==1 or use_aura==1', { | 190 ['OS=="mac" or OS=="win" or chromeos==1 or use_aura==1', { |
| 191 'toolkit_views%': 1, | 191 'toolkit_views%': 1, |
| 192 }, { | 192 }, { |
| 193 'toolkit_views%': 0, | 193 'toolkit_views%': 0, |
| 194 }], | 194 }], |
| 195 | 195 |
| 196 # Embedded builds use aura without ash or views. | 196 # Embedded builds use aura without ash or views. |
| 197 ['embedded==1', { | 197 ['embedded==1', { |
| 198 'use_aura%': 1, | 198 'use_aura%': 1, |
| 199 'use_ash%': 0, | 199 'use_ash%': 0, |
| 200 'toolkit_views%': 0, | 200 'toolkit_views%': 0, |
| (...skipping 5557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5758 # settings in target dicts. SYMROOT is a special case, because many other | 5758 # settings in target dicts. SYMROOT is a special case, because many other |
| 5759 # Xcode variables depend on it, including variables such as | 5759 # Xcode variables depend on it, including variables such as |
| 5760 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5760 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5761 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5761 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5762 # files to appear (when present) in the UI as actual files and not red | 5762 # files to appear (when present) in the UI as actual files and not red |
| 5763 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5763 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5764 # and therefore SYMROOT, needs to be set at the project level. | 5764 # and therefore SYMROOT, needs to be set at the project level. |
| 5765 'SYMROOT': '<(DEPTH)/xcodebuild', | 5765 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5766 }, | 5766 }, |
| 5767 } | 5767 } |
| OLD | NEW |