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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 # Chromeos implies ash. | 91 # Chromeos implies ash. |
92 ['chromeos==1', { | 92 ['chromeos==1', { |
93 'use_ash%': 1, | 93 'use_ash%': 1, |
94 'use_aura%': 1, | 94 'use_aura%': 1, |
95 }], | 95 }], |
96 | 96 |
97 # For now, Windows *AND* Linux builds that |use_aura| should also | 97 # For now, Windows *AND* Linux builds that |use_aura| should also |
98 # imply using ash. This rule should be removed for the future when | 98 # imply using ash. This rule should be removed for the future when |
99 # both Linux and Windows are using the aura windows without the ash | 99 # both Linux and Windows are using the aura windows without the ash |
100 # interface. | 100 # interface. |
101 ['use_aura==1 and ((OS=="linux" and chromeos==0) or OS=="win")', { | 101 ['use_aura==1 and OS=="win"', { |
102 'use_ash%': 1, | 102 'use_ash%': 1, |
103 }], | 103 }], |
104 ['use_ash==1', { | 104 ['use_ash==1', { |
105 'use_aura%': 1, | 105 'use_aura%': 1, |
106 }], | 106 }], |
107 | 107 |
108 # Set default value of toolkit_views based on OS. | 108 # Set default value of toolkit_views based on OS. |
109 ['OS=="win" or chromeos==1 or use_aura==1', { | 109 ['OS=="win" or chromeos==1 or use_aura==1', { |
110 'toolkit_views%': 1, | 110 'toolkit_views%': 1, |
111 }, { | 111 }, { |
(...skipping 2985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3097 # settings in target dicts. SYMROOT is a special case, because many other | 3097 # settings in target dicts. SYMROOT is a special case, because many other |
3098 # Xcode variables depend on it, including variables such as | 3098 # Xcode variables depend on it, including variables such as |
3099 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3099 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3100 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3100 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3101 # files to appear (when present) in the UI as actual files and not red | 3101 # files to appear (when present) in the UI as actual files and not red |
3102 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3102 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3103 # and therefore SYMROOT, needs to be set at the project level. | 3103 # and therefore SYMROOT, needs to be set at the project level. |
3104 'SYMROOT': '<(DEPTH)/xcodebuild', | 3104 'SYMROOT': '<(DEPTH)/xcodebuild', |
3105 }, | 3105 }, |
3106 } | 3106 } |
OLD | NEW |