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

Side by Side Diff: gpu/gles2_conform_support/gles2_conform_support.gyp

Issue 13985039: Rationalize linux vs x11 in ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix review / try issues Created 7 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 | « build/common.gypi ('k') | gpu/gles2_conform_support/native/egl_native_linux.cc » ('j') | no next file with comments »
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 { 5 {
6 'variables': { 6 'variables': {
7 # These are defined here because we want to be able to compile them on 7 # These are defined here because we want to be able to compile them on
8 # the buildbots without needed the OpenGL ES 2.0 conformance tests 8 # the buildbots without needed the OpenGL ES 2.0 conformance tests
9 # which are not open source. 9 # which are not open source.
10 'bootstrap_sources_native': [ 10 'bootstrap_sources_native': [
11 'native/main.cc', 11 'native/main.cc',
12 ], 12 ],
13 'conditions': [ 13 'conditions': [
14 ['OS=="linux"', { 14 ['OS=="linux"', {
15 'bootstrap_sources_native': [ 15 'bootstrap_sources_native': [
16 'native/egl_native.cc', 16 'native/egl_native.cc',
17 'native/egl_native_linux.cc', 17 'native/egl_native_x11.cc',
18 ], 18 ],
19 }], 19 }],
20 ['OS=="win"', { 20 ['OS=="win"', {
21 'bootstrap_sources_native': [ 21 'bootstrap_sources_native': [
22 'native/egl_native.cc', 22 'native/egl_native.cc',
23 'native/egl_native_win.cc', 23 'native/egl_native_win.cc',
24 ], 24 ],
25 }], 25 }],
26 ], 26 ],
27 }, 27 },
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'EGLAPI=', 121 'EGLAPI=',
122 'EGLAPIENTRY=', 122 'EGLAPIENTRY=',
123 ], 123 ],
124 'sources': [ 124 'sources': [
125 '<@(bootstrap_sources_native)', 125 '<@(bootstrap_sources_native)',
126 'gles2_conform_support.c' 126 'gles2_conform_support.c'
127 ], 127 ],
128 }, 128 },
129 ], 129 ],
130 } 130 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | gpu/gles2_conform_support/native/egl_native_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698