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 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'gl_context_egl.h', | 130 'gl_context_egl.h', |
131 'gl_surface_egl.cc', | 131 'gl_surface_egl.cc', |
132 'gl_surface_egl.h', | 132 'gl_surface_egl.h', |
133 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', | 133 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', |
134 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', | 134 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', |
135 ], | 135 ], |
136 'include_dirs': [ | 136 'include_dirs': [ |
137 '<(DEPTH)/third_party/angle/include', | 137 '<(DEPTH)/third_party/angle/include', |
138 ], | 138 ], |
139 }], | 139 }], |
140 ['use_x11 == 1 and use_wayland != 1', { | 140 ['use_x11 == 1', { |
141 'sources': [ | 141 'sources': [ |
142 'gl_context_glx.cc', | 142 'gl_context_glx.cc', |
143 'gl_context_glx.h', | 143 'gl_context_glx.h', |
144 'gl_surface_glx.cc', | 144 'gl_surface_glx.cc', |
145 'gl_surface_glx.h', | 145 'gl_surface_glx.h', |
146 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', | 146 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', |
147 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', | 147 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', |
148 ], | 148 ], |
149 'all_dependent_settings': { | 149 'all_dependent_settings': { |
150 'defines': [ | 150 'defines': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 ], | 191 ], |
192 'defines': [ | 192 'defines': [ |
193 'GL_GLEXT_PROTOTYPES', | 193 'GL_GLEXT_PROTOTYPES', |
194 'EGL_EGLEXT_PROTOTYPES', | 194 'EGL_EGLEXT_PROTOTYPES', |
195 ], | 195 ], |
196 }], | 196 }], |
197 ], | 197 ], |
198 }, | 198 }, |
199 ], | 199 ], |
200 } | 200 } |
OLD | NEW |