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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # These are defined here because we want to be able to compile them on | 8 # These are defined here because we want to be able to compile them on |
9 # the buildbots without needed the OpenGL ES 2.0 conformance tests | 9 # the buildbots without needed the OpenGL ES 2.0 conformance tests |
10 # which are not open source. | 10 # which are not open source. |
(...skipping 12 matching lines...) Expand all Loading... |
23 'bootstrap_sources_native': [ | 23 'bootstrap_sources_native': [ |
24 'native/egl_native.cc', | 24 'native/egl_native.cc', |
25 'native/egl_native_win.cc', | 25 'native/egl_native_win.cc', |
26 ], | 26 ], |
27 }], | 27 }], |
28 ], | 28 ], |
29 | 29 |
30 }, | 30 }, |
31 'targets': [ | 31 'targets': [ |
32 { | 32 { |
| 33 # GN version: //gpu/gles2_conform_support/egl |
33 'target_name': 'egl_native', | 34 'target_name': 'egl_native', |
34 'type': 'static_library', | 35 'type': 'static_library', |
35 'dependencies': [ | 36 'dependencies': [ |
36 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
37 '../../gpu/gpu.gyp:command_buffer_service', | 38 '../../gpu/gpu.gyp:command_buffer_service', |
38 '../../gpu/gpu.gyp:gles2_implementation_no_check', | 39 '../../gpu/gpu.gyp:gles2_implementation_no_check', |
39 '../../gpu/gpu.gyp:gpu', | 40 '../../gpu/gpu.gyp:gpu', |
40 '../../third_party/khronos/khronos.gyp:khronos_headers', | 41 '../../third_party/khronos/khronos.gyp:khronos_headers', |
41 '../../ui/base/ui_base.gyp:ui_base', | 42 '../../ui/base/ui_base.gyp:ui_base', |
42 '../../ui/gfx/gfx.gyp:gfx', | 43 '../../ui/gfx/gfx.gyp:gfx', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'EGLAPI=', | 120 'EGLAPI=', |
120 'EGLAPIENTRY=', | 121 'EGLAPIENTRY=', |
121 ], | 122 ], |
122 'sources': [ | 123 'sources': [ |
123 '<@(bootstrap_sources_native)', | 124 '<@(bootstrap_sources_native)', |
124 'gles2_conform_support.c' | 125 'gles2_conform_support.c' |
125 ], | 126 ], |
126 }, | 127 }, |
127 ], | 128 ], |
128 } | 129 } |
OLD | NEW |