OLD | NEW |
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 # hard_dependency is necessary for this target because it has actions | 80 # hard_dependency is necessary for this target because it has actions |
81 # that generate header files included by dependent targets. The header | 81 # that generate header files included by dependent targets. The header |
82 # files must be generated before the dependents are compiled. The usual | 82 # files must be generated before the dependents are compiled. The usual |
83 # semantics are to allow the two targets to build concurrently. | 83 # semantics are to allow the two targets to build concurrently. |
84 'hard_dependency': 1, | 84 'hard_dependency': 1, |
85 'actions': [ | 85 'actions': [ |
86 { | 86 { |
87 'action_name': 'generate_gl_bindings', | 87 'action_name': 'generate_gl_bindings', |
88 'inputs': [ | 88 'inputs': [ |
89 'generate_bindings.py', | 89 'generate_bindings.py', |
90 '../../../gpu/GLES2/gl2ext.h', | 90 '<(DEPTH)/third_party/khronos/GLES2/gl2ext.h', |
91 '../../../gpu/EGL/eglext.h', | 91 '<(DEPTH)/third_party/khronos/EGL/eglext.h', |
92 '../../../third_party/mesa/MesaLib/include/GL/glext.h', | 92 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/glext.h', |
93 '../../../third_party/mesa/MesaLib/include/GL/glxext.h', | 93 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/glxext.h', |
94 '../../../third_party/mesa/MesaLib/include/GL/wglext.h', | 94 '<(DEPTH)/third_party/mesa/MesaLib/include/GL/wglext.h', |
95 ], | 95 ], |
96 'outputs': [ | 96 'outputs': [ |
97 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', | 97 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', |
98 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', | 98 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', |
99 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', | 99 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', |
100 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', | 100 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', |
101 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', | 101 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', |
102 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', | 102 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', |
103 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', | 103 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', |
104 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc', | 104 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'link_settings': { | 169 'link_settings': { |
170 'libraries': [ | 170 'libraries': [ |
171 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 171 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
172 ], | 172 ], |
173 }, | 173 }, |
174 }], | 174 }], |
175 ], | 175 ], |
176 }, | 176 }, |
177 ], | 177 ], |
178 } | 178 } |
OLD | NEW |