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 2087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2098 'use_brlapi%': 1, | 2098 'use_brlapi%': 1, |
2099 }], | 2099 }], |
2100 | 2100 |
2101 ['use_ozone==1', { | 2101 ['use_ozone==1', { |
2102 # This is the default platform | 2102 # This is the default platform |
2103 'ozone_platform%': "test", | 2103 'ozone_platform%': "test", |
2104 | 2104 |
2105 # Enable built-in ozone platforms if ozone is enabled. | 2105 # Enable built-in ozone platforms if ozone is enabled. |
2106 'ozone_platform_caca%': 0, | 2106 'ozone_platform_caca%': 0, |
2107 'ozone_platform_dri%': 1, | 2107 'ozone_platform_dri%': 1, |
| 2108 'ozone_platform_ozonex%': 0, |
2108 'ozone_platform_test%': 1, | 2109 'ozone_platform_test%': 1, |
2109 }, { # use_ozone==0 | 2110 }, { # use_ozone==0 |
2110 'ozone_platform_caca%': 0, | 2111 'ozone_platform_caca%': 0, |
2111 'ozone_platform_dri%': 0, | 2112 'ozone_platform_dri%': 0, |
| 2113 'ozone_platform_ozonex%': 0, |
2112 'ozone_platform_test%': 0, | 2114 'ozone_platform_test%': 0, |
2113 }], | 2115 }], |
2114 | 2116 |
2115 ['desktop_linux==1 and use_aura==1 and use_x11==1', { | 2117 ['desktop_linux==1 and use_aura==1 and use_x11==1', { |
2116 'use_clipboard_aurax11%': 1, | 2118 'use_clipboard_aurax11%': 1, |
2117 }], | 2119 }], |
2118 | 2120 |
2119 ['OS=="win" and use_goma==1', { | 2121 ['OS=="win" and use_goma==1', { |
2120 # goma doesn't support pch yet. | 2122 # goma doesn't support pch yet. |
2121 'chromium_win_pch': 0, | 2123 'chromium_win_pch': 0, |
(...skipping 3122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5244 # settings in target dicts. SYMROOT is a special case, because many other | 5246 # settings in target dicts. SYMROOT is a special case, because many other |
5245 # Xcode variables depend on it, including variables such as | 5247 # Xcode variables depend on it, including variables such as |
5246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5248 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5249 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5248 # files to appear (when present) in the UI as actual files and not red | 5250 # files to appear (when present) in the UI as actual files and not red |
5249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5251 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5250 # and therefore SYMROOT, needs to be set at the project level. | 5252 # and therefore SYMROOT, needs to be set at the project level. |
5251 'SYMROOT': '<(DEPTH)/xcodebuild', | 5253 'SYMROOT': '<(DEPTH)/xcodebuild', |
5252 }, | 5254 }, |
5253 } | 5255 } |
OLD | NEW |