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

Side by Side Diff: build/common.gypi

Issue 106633002: GBM Ozone implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 10 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 | third_party/mesa/mesa.gyp » ('j') | third_party/mesa/mesa.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 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1936 [ 'chromeos==1', { 1936 [ 'chromeos==1', {
1937 'use_brlapi%': 1, 1937 'use_brlapi%': 1,
1938 }], 1938 }],
1939 1939
1940 ['use_ozone==1', { 1940 ['use_ozone==1', {
1941 # This is the default platform 1941 # This is the default platform
1942 'ozone_platform%': "test", 1942 'ozone_platform%': "test",
1943 1943
1944 # Enable built-in ozone platforms if ozone is enabled. 1944 # Enable built-in ozone platforms if ozone is enabled.
1945 'ozone_platform_dri%': 1, 1945 'ozone_platform_dri%': 1,
1946 'ozone_platform_gbm%': 1,
1946 'ozone_platform_test%': 1, 1947 'ozone_platform_test%': 1,
1947 }, { # use_ozone==0 1948 }, { # use_ozone==0
1948 'ozone_platform_dri%': 0, 1949 'ozone_platform_dri%': 0,
1950 'ozone_platform_gbm%': 0,
1949 'ozone_platform_test%': 0, 1951 'ozone_platform_test%': 0,
1950 }], 1952 }],
1951 1953
1952 ['desktop_linux==1 and use_aura==1 and use_x11==1', { 1954 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
1953 'use_clipboard_aurax11%': 1, 1955 'use_clipboard_aurax11%': 1,
1954 }], 1956 }],
1955 1957
1956 ['OS=="win" and use_goma==1', { 1958 ['OS=="win" and use_goma==1', {
1957 # goma doesn't support pch yet. 1959 # goma doesn't support pch yet.
1958 'chromium_win_pch': 0, 1960 'chromium_win_pch': 0,
(...skipping 3012 matching lines...) Expand 10 before | Expand all | Expand 10 after
4971 # settings in target dicts. SYMROOT is a special case, because many other 4973 # settings in target dicts. SYMROOT is a special case, because many other
4972 # Xcode variables depend on it, including variables such as 4974 # Xcode variables depend on it, including variables such as
4973 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4975 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4974 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4976 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4975 # files to appear (when present) in the UI as actual files and not red 4977 # files to appear (when present) in the UI as actual files and not red
4976 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4978 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4977 # and therefore SYMROOT, needs to be set at the project level. 4979 # and therefore SYMROOT, needs to be set at the project level.
4978 'SYMROOT': '<(DEPTH)/xcodebuild', 4980 'SYMROOT': '<(DEPTH)/xcodebuild',
4979 }, 4981 },
4980 } 4982 }
OLDNEW
« no previous file with comments | « no previous file | third_party/mesa/mesa.gyp » ('j') | third_party/mesa/mesa.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698