| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'gl_interface.cc', | 56 'gl_interface.cc', |
| 57 'gl_interface.h', | 57 'gl_interface.h', |
| 58 'gl_share_group.cc', | 58 'gl_share_group.cc', |
| 59 'gl_share_group.h', | 59 'gl_share_group.h', |
| 60 'gl_surface.cc', | 60 'gl_surface.cc', |
| 61 'gl_surface.h', | 61 'gl_surface.h', |
| 62 'gl_surface_linux.cc', | 62 'gl_surface_linux.cc', |
| 63 'gl_surface_mac.cc', | 63 'gl_surface_mac.cc', |
| 64 'gl_surface_stub.cc', | 64 'gl_surface_stub.cc', |
| 65 'gl_surface_stub.h', | 65 'gl_surface_stub.h', |
| 66 'gl_surface_wayland.cc', | |
| 67 'gl_surface_win.cc', | 66 'gl_surface_win.cc', |
| 68 'gl_surface_osmesa.cc', | 67 'gl_surface_osmesa.cc', |
| 69 'gl_surface_osmesa.h', | 68 'gl_surface_osmesa.h', |
| 70 'gl_switches.cc', | 69 'gl_switches.cc', |
| 71 'gl_switches.h', | 70 'gl_switches.h', |
| 72 'scoped_make_current.cc', | 71 'scoped_make_current.cc', |
| 73 'scoped_make_current.h', | 72 'scoped_make_current.h', |
| 74 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', | 73 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.cc', |
| 75 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', | 74 '<(gl_binding_output_dir)/gl_bindings_autogen_gl.h', |
| 76 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', | 75 '<(gl_binding_output_dir)/gl_bindings_autogen_mock.cc', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'gl_context_egl.h', | 121 'gl_context_egl.h', |
| 123 'gl_surface_egl.cc', | 122 'gl_surface_egl.cc', |
| 124 'gl_surface_egl.h', | 123 'gl_surface_egl.h', |
| 125 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', | 124 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', |
| 126 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', | 125 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', |
| 127 ], | 126 ], |
| 128 'include_dirs': [ | 127 'include_dirs': [ |
| 129 '<(DEPTH)/third_party/angle/include', | 128 '<(DEPTH)/third_party/angle/include', |
| 130 ], | 129 ], |
| 131 }], | 130 }], |
| 132 ['use_wayland == 1', { | |
| 133 'sources!': [ | |
| 134 'gl_surface_linux.cc', | |
| 135 ], | |
| 136 }], | |
| 137 ['use_x11 == 1 and use_wayland != 1', { | 131 ['use_x11 == 1 and use_wayland != 1', { |
| 138 'sources': [ | 132 'sources': [ |
| 139 'gl_context_glx.cc', | 133 'gl_context_glx.cc', |
| 140 'gl_context_glx.h', | 134 'gl_context_glx.h', |
| 141 'gl_surface_glx.cc', | 135 'gl_surface_glx.cc', |
| 142 'gl_surface_glx.h', | 136 'gl_surface_glx.h', |
| 143 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', | 137 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', |
| 144 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', | 138 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', |
| 145 ], | 139 ], |
| 146 'all_dependent_settings': { | 140 'all_dependent_settings': { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 169 'link_settings': { | 163 'link_settings': { |
| 170 'libraries': [ | 164 'libraries': [ |
| 171 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 165 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 172 ], | 166 ], |
| 173 }, | 167 }, |
| 174 }], | 168 }], |
| 175 ], | 169 ], |
| 176 }, | 170 }, |
| 177 ], | 171 ], |
| 178 } | 172 } |
| OLD | NEW |