| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'host_arch%': | 102 'host_arch%': |
| 103 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s
/arm.*/arm/;s/i86pc/ia32/")', | 103 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s
/arm.*/arm/;s/i86pc/ia32/")', |
| 104 }], | 104 }], |
| 105 | 105 |
| 106 # Embedded implies ozone. | 106 # Embedded implies ozone. |
| 107 ['embedded==1', { | 107 ['embedded==1', { |
| 108 'use_ozone%': 1, | 108 'use_ozone%': 1, |
| 109 }], | 109 }], |
| 110 | 110 |
| 111 ['OS=="android"', { | 111 ['OS=="android"', { |
| 112 'android_goma_dir%': '<!(echo "${GOMA_DIR}")', | 112 'android_goma_dir%': '<!(dirname "${ANDROID_GOMA_WRAPPER}")', |
| 113 }, { |
| 114 'android_goma_dir%': '' |
| 113 }], | 115 }], |
| 114 ], | 116 ], |
| 115 }, | 117 }, |
| 116 # Copy conditionally-set variables out one scope. | 118 # Copy conditionally-set variables out one scope. |
| 117 'chromeos%': '<(chromeos)', | 119 'chromeos%': '<(chromeos)', |
| 118 'desktop_linux%': '<(desktop_linux)', | 120 'desktop_linux%': '<(desktop_linux)', |
| 119 'use_aura%': '<(use_aura)', | 121 'use_aura%': '<(use_aura)', |
| 120 'use_ash%': '<(use_ash)', | 122 'use_ash%': '<(use_ash)', |
| 121 'use_cras%': '<(use_cras)', | 123 'use_cras%': '<(use_cras)', |
| 122 'use_ozone%': '<(use_ozone)', | 124 'use_ozone%': '<(use_ozone)', |
| (...skipping 4680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4803 # settings in target dicts. SYMROOT is a special case, because many other | 4805 # settings in target dicts. SYMROOT is a special case, because many other |
| 4804 # Xcode variables depend on it, including variables such as | 4806 # Xcode variables depend on it, including variables such as |
| 4805 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4807 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4806 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4808 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4807 # files to appear (when present) in the UI as actual files and not red | 4809 # files to appear (when present) in the UI as actual files and not red |
| 4808 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4810 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4809 # and therefore SYMROOT, needs to be set at the project level. | 4811 # and therefore SYMROOT, needs to be set at the project level. |
| 4810 'SYMROOT': '<(DEPTH)/xcodebuild', | 4812 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4811 }, | 4813 }, |
| 4812 } | 4814 } |
| OLD | NEW |