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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'gl_surface_android.h', | 69 'gl_surface_android.h', |
70 'gl_surface_linux.cc', | 70 'gl_surface_linux.cc', |
71 'gl_surface_mac.cc', | 71 'gl_surface_mac.cc', |
72 'gl_surface_stub.cc', | 72 'gl_surface_stub.cc', |
73 'gl_surface_stub.h', | 73 'gl_surface_stub.h', |
74 'gl_surface_win.cc', | 74 'gl_surface_win.cc', |
75 'gl_surface_osmesa.cc', | 75 'gl_surface_osmesa.cc', |
76 'gl_surface_osmesa.h', | 76 'gl_surface_osmesa.h', |
77 'gl_switches.cc', | 77 'gl_switches.cc', |
78 'gl_switches.h', | 78 'gl_switches.h', |
| 79 'gpu_switching_manager.cc', |
| 80 'gpu_switching_manager.h', |
79 'scoped_make_current.cc', | 81 'scoped_make_current.cc', |
80 'scoped_make_current.h', | 82 'scoped_make_current.h', |
81 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', | 83 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', |
82 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', | 84 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', |
83 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', | 85 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', |
84 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc', | 86 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.cc', |
85 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.h', | 87 '<(gl_binding_output_dir)/gl_bindings_autogen_osmesa.h', |
86 ], | 88 ], |
87 # hard_dependency is necessary for this target because it has actions | 89 # hard_dependency is necessary for this target because it has actions |
88 # that generate header files included by dependent targets. The header | 90 # that generate header files included by dependent targets. The header |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 ], | 198 ], |
197 'defines': [ | 199 'defines': [ |
198 'GL_GLEXT_PROTOTYPES', | 200 'GL_GLEXT_PROTOTYPES', |
199 'EGL_EGLEXT_PROTOTYPES', | 201 'EGL_EGLEXT_PROTOTYPES', |
200 ], | 202 ], |
201 }], | 203 }], |
202 ], | 204 ], |
203 }, | 205 }, |
204 ], | 206 ], |
205 } | 207 } |
OLD | NEW |