| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 # conversion is done), some of the things which are now controlled by | 58 # conversion is done), some of the things which are now controlled by |
| 59 # 'branding', such as symbol generation, will need to be refactored | 59 # 'branding', such as symbol generation, will need to be refactored |
| 60 # based on 'buildtype' (i.e. we don't care about saving symbols for | 60 # based on 'buildtype' (i.e. we don't care about saving symbols for |
| 61 # non-Official # builds). | 61 # non-Official # builds). |
| 62 'buildtype%': 'Dev', | 62 'buildtype%': 'Dev', |
| 63 | 63 |
| 64 # Override branding to select the desired branding flavor. | 64 # Override branding to select the desired branding flavor. |
| 65 'branding%': 'Chromium', | 65 'branding%': 'Chromium', |
| 66 | 66 |
| 67 'conditions': [ | 67 'conditions': [ |
| 68 # ChromeOS implies ash and for a limited time Windows. Call now!. | 68 # ChromeOS implies ash. |
| 69 ['chromeos==1 or OS=="win"', { | 69 ['chromeos==1', { |
| 70 'use_ash%': 1, | 70 'use_ash%': 1, |
| 71 'use_aura%': 1, | 71 'use_aura%': 1, |
| 72 }], | 72 }], |
| 73 | 73 |
| 74 # For now, Windows builds that |use_aura| should also imply using | 74 # For now, Windows builds that |use_aura| should also imply using |
| 75 # ash. This rule should be removed for the future when Windows is | 75 # ash. This rule should be removed for the future when Windows is |
| 76 # using the aura windows without the ash interface. | 76 # using the aura windows without the ash interface. |
| 77 ['use_aura==1 and OS=="win"', { | 77 ['use_aura==1 and OS=="win"', { |
| 78 'use_ash%': 1, | 78 'use_ash%': 1, |
| 79 }], | 79 }], |
| (...skipping 4554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4634 # settings in target dicts. SYMROOT is a special case, because many other | 4634 # settings in target dicts. SYMROOT is a special case, because many other |
| 4635 # Xcode variables depend on it, including variables such as | 4635 # Xcode variables depend on it, including variables such as |
| 4636 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4636 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4637 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4637 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4638 # files to appear (when present) in the UI as actual files and not red | 4638 # files to appear (when present) in the UI as actual files and not red |
| 4639 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4639 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4640 # and therefore SYMROOT, needs to be set at the project level. | 4640 # and therefore SYMROOT, needs to be set at the project level. |
| 4641 'SYMROOT': '<(DEPTH)/xcodebuild', | 4641 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4642 }, | 4642 }, |
| 4643 } | 4643 } |
| OLD | NEW |