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

Side by Side Diff: ui/gfx/gl/gl.gyp

Issue 8633020: Revert 111170 - Move GL headers from gpu to third_party/khronos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | « ui/gfx/gl/generate_bindings.py ('k') | webkit/DEPS » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 # hard_dependency is necessary for this target because it has actions 82 # hard_dependency is necessary for this target because it has actions
83 # that generate header files included by dependent targets. The header 83 # that generate header files included by dependent targets. The header
84 # files must be generated before the dependents are compiled. The usual 84 # files must be generated before the dependents are compiled. The usual
85 # semantics are to allow the two targets to build concurrently. 85 # semantics are to allow the two targets to build concurrently.
86 'hard_dependency': 1, 86 'hard_dependency': 1,
87 'actions': [ 87 'actions': [
88 { 88 {
89 'action_name': 'generate_gl_bindings', 89 'action_name': 'generate_gl_bindings',
90 'inputs': [ 90 'inputs': [
91 'generate_bindings.py', 91 'generate_bindings.py',
92 '<(DEPTH)/third_party/khronos/GLES2/gl2ext.h', 92 '../../../gpu/GLES2/gl2ext.h',
93 '<(DEPTH)/third_party/khronos/EGL/eglext.h', 93 '../../../gpu/EGL/eglext.h',
94 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/glext.h', 94 '../../../third_party/mesa/MesaLib/include/GL/glext.h',
95 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/glxext.h', 95 '../../../third_party/mesa/MesaLib/include/GL/glxext.h',
96 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/wglext.h', 96 '../../../third_party/mesa/MesaLib/include/GL/wglext.h',
97 ], 97 ],
98 'outputs': [ 98 'outputs': [
99 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', 99 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc',
100 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', 100 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h',
101 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', 101 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc',
102 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', 102 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h',
103 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', 103 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc',
104 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', 104 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h',
105 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', 105 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc',
106 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc', 106 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 ], 190 ],
191 'defines': [ 191 'defines': [
192 'GL_GLEXT_PROTOTYPES', 192 'GL_GLEXT_PROTOTYPES',
193 'EGL_EGLEXT_PROTOTYPES', 193 'EGL_EGLEXT_PROTOTYPES',
194 ], 194 ],
195 }], 195 }],
196 ], 196 ],
197 }, 197 },
198 ], 198 ],
199 } 199 }
OLDNEW
« no previous file with comments | « ui/gfx/gl/generate_bindings.py ('k') | webkit/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698