| 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 2105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2116 | 2116 |
| 2117 ['use_ozone==1 and chromeos==0', { | 2117 ['use_ozone==1 and chromeos==0', { |
| 2118 # This is the default platform | 2118 # This is the default platform |
| 2119 'ozone_platform%': "test", | 2119 'ozone_platform%': "test", |
| 2120 }], | 2120 }], |
| 2121 | 2121 |
| 2122 ['use_ozone==1', { | 2122 ['use_ozone==1', { |
| 2123 # Enable built-in ozone platforms if ozone is enabled. | 2123 # Enable built-in ozone platforms if ozone is enabled. |
| 2124 'ozone_platform_caca%': 0, | 2124 'ozone_platform_caca%': 0, |
| 2125 'ozone_platform_dri%': 1, | 2125 'ozone_platform_dri%': 1, |
| 2126 'ozone_platform_ozonex%': 0, | 2126 'ozone_platform_egltest%': 1, |
| 2127 'ozone_platform_test%': 1, | 2127 'ozone_platform_test%': 1, |
| 2128 }, { # use_ozone==0 | 2128 }, { # use_ozone==0 |
| 2129 'ozone_platform_caca%': 0, | 2129 'ozone_platform_caca%': 0, |
| 2130 'ozone_platform_dri%': 0, | 2130 'ozone_platform_dri%': 0, |
| 2131 'ozone_platform_ozonex%': 0, | 2131 'ozone_platform_egltest%': 0, |
| 2132 'ozone_platform_test%': 0, | 2132 'ozone_platform_test%': 0, |
| 2133 }], | 2133 }], |
| 2134 | 2134 |
| 2135 ['desktop_linux==1 and use_aura==1 and use_x11==1', { | 2135 ['desktop_linux==1 and use_aura==1 and use_x11==1', { |
| 2136 'use_clipboard_aurax11%': 1, | 2136 'use_clipboard_aurax11%': 1, |
| 2137 }], | 2137 }], |
| 2138 | 2138 |
| 2139 ['OS=="win" and use_goma==1', { | 2139 ['OS=="win" and use_goma==1', { |
| 2140 # goma doesn't support pch yet. | 2140 # goma doesn't support pch yet. |
| 2141 'chromium_win_pch': 0, | 2141 'chromium_win_pch': 0, |
| (...skipping 3144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5286 # settings in target dicts. SYMROOT is a special case, because many other | 5286 # settings in target dicts. SYMROOT is a special case, because many other |
| 5287 # Xcode variables depend on it, including variables such as | 5287 # Xcode variables depend on it, including variables such as |
| 5288 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5288 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5289 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5289 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5290 # files to appear (when present) in the UI as actual files and not red | 5290 # files to appear (when present) in the UI as actual files and not red |
| 5291 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5291 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5292 # and therefore SYMROOT, needs to be set at the project level. | 5292 # and therefore SYMROOT, needs to be set at the project level. |
| 5293 'SYMROOT': '<(DEPTH)/xcodebuild', | 5293 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5294 }, | 5294 }, |
| 5295 } | 5295 } |
| OLD | NEW |