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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'EGLAPI=', | 89 'EGLAPI=', |
90 'EGLAPIENTRY=', | 90 'EGLAPIENTRY=', |
91 ], | 91 ], |
92 }, | 92 }, |
93 { | 93 { |
94 # GN version: //gpu/gles2_conform_support | 94 # GN version: //gpu/gles2_conform_support |
95 'target_name': 'gles2_conform_support', | 95 'target_name': 'gles2_conform_support', |
96 'type': 'executable', | 96 'type': 'executable', |
97 'dependencies': [ | 97 'dependencies': [ |
98 'egl_native', | 98 'egl_native', |
99 '../../base/allocator/allocator.gyp:allocator', | |
100 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 99 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
101 '../../gpu/gpu.gyp:gles2_c_lib_nocheck', | 100 '../../gpu/gpu.gyp:gles2_c_lib_nocheck', |
102 '../../third_party/expat/expat.gyp:expat', | 101 '../../third_party/expat/expat.gyp:expat', |
103 ], | 102 ], |
104 'defines': [ | 103 'defines': [ |
105 'GLES2_CONFORM_SUPPORT_ONLY', | 104 'GLES2_CONFORM_SUPPORT_ONLY', |
106 'GTF_GLES20', | 105 'GTF_GLES20', |
107 'EGLAPI=', | 106 'EGLAPI=', |
108 'EGLAPIENTRY=', | 107 'EGLAPIENTRY=', |
109 ], | 108 ], |
110 'sources': [ | 109 'sources': [ |
111 '<@(bootstrap_sources_native)', | 110 '<@(bootstrap_sources_native)', |
112 'gles2_conform_support.c' | 111 'gles2_conform_support.c' |
113 ], | 112 ], |
114 }, | 113 }, |
115 ], | 114 ], |
116 } | 115 } |
OLD | NEW |