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 { | 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 Loading... |
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 } |
OLD | NEW |