Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(491)

Side by Side Diff: build/common.gypi

Issue 275273002: x11: Split the gfx_x11 target into its own gyp file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | ui/gfx/x/gfx_x11.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | ui/gfx/x/gfx_x11.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698