| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 # Override branding to select the desired branding flavor. | 69 # Override branding to select the desired branding flavor. |
| 70 'branding%': 'Chromium', | 70 'branding%': 'Chromium', |
| 71 | 71 |
| 72 'conditions': [ | 72 'conditions': [ |
| 73 # ChromeOS and Windows use Aura and Ash. | 73 # ChromeOS and Windows use Aura and Ash. |
| 74 ['chromeos==1 or OS=="win"', { | 74 ['chromeos==1 or OS=="win"', { |
| 75 'use_ash%': 1, | 75 'use_ash%': 1, |
| 76 'use_aura%': 1, | 76 'use_aura%': 1, |
| 77 }], | 77 }], |
| 78 | 78 |
| 79 # ToT Linux should be aura. |
| 80 # |
| 81 # TODO(erg): Merge this into the previous block once compiling with |
| 82 # aura safely implies including ash capabilities. |
| 83 ['OS=="linux"', { |
| 84 'use_aura%': 1, |
| 85 }], |
| 86 |
| 79 # Whether we're a traditional desktop unix. | 87 # Whether we're a traditional desktop unix. |
| 80 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") a
nd chromeos==0', { | 88 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") a
nd chromeos==0', { |
| 81 'desktop_linux%': 1, | 89 'desktop_linux%': 1, |
| 82 }, { | 90 }, { |
| 83 'desktop_linux%': 0, | 91 'desktop_linux%': 0, |
| 84 }], | 92 }], |
| 85 | 93 |
| 86 # Compute the architecture that we're building on. | 94 # Compute the architecture that we're building on. |
| 87 ['OS=="win" or OS=="mac" or OS=="ios"', { | 95 ['OS=="win" or OS=="mac" or OS=="ios"', { |
| 88 'host_arch%': 'ia32', | 96 'host_arch%': 'ia32', |
| (...skipping 4603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4692 # settings in target dicts. SYMROOT is a special case, because many other | 4700 # settings in target dicts. SYMROOT is a special case, because many other |
| 4693 # Xcode variables depend on it, including variables such as | 4701 # Xcode variables depend on it, including variables such as |
| 4694 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4702 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4695 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4703 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4696 # files to appear (when present) in the UI as actual files and not red | 4704 # files to appear (when present) in the UI as actual files and not red |
| 4697 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4705 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4698 # and therefore SYMROOT, needs to be set at the project level. | 4706 # and therefore SYMROOT, needs to be set at the project level. |
| 4699 'SYMROOT': '<(DEPTH)/xcodebuild', | 4707 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4700 }, | 4708 }, |
| 4701 } | 4709 } |
| OLD | NEW |