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