| 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 23 matching lines...) Expand all Loading... |
| 34 '<(gl_binding_output_dir)', | 34 '<(gl_binding_output_dir)', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 'sources': [ | 37 'sources': [ |
| 38 'gl_bindings.h', | 38 'gl_bindings.h', |
| 39 'gl_bindings_skia_in_process.cc', | 39 'gl_bindings_skia_in_process.cc', |
| 40 'gl_bindings_skia_in_process.h', | 40 'gl_bindings_skia_in_process.h', |
| 41 'gl_context.cc', | 41 'gl_context.cc', |
| 42 'gl_context.h', | 42 'gl_context.h', |
| 43 'gl_context_linux.cc', | 43 'gl_context_linux.cc', |
| 44 'gl_context_mac.cc', | 44 'gl_context_mac.mm', |
| 45 'gl_context_osmesa.cc', | 45 'gl_context_osmesa.cc', |
| 46 'gl_context_osmesa.h', | 46 'gl_context_osmesa.h', |
| 47 'gl_context_stub.cc', | 47 'gl_context_stub.cc', |
| 48 'gl_context_stub.h', | 48 'gl_context_stub.h', |
| 49 'gl_context_win.cc', | 49 'gl_context_win.cc', |
| 50 'gl_export.h', | 50 'gl_export.h', |
| 51 'gl_implementation.cc', | 51 'gl_implementation.cc', |
| 52 'gl_implementation.h', | 52 'gl_implementation.h', |
| 53 'gl_implementation_linux.cc', | 53 'gl_implementation_linux.cc', |
| 54 'gl_implementation_mac.cc', | 54 'gl_implementation_mac.cc', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'gl_context_cgl.h', | 165 'gl_context_cgl.h', |
| 166 'gl_surface_cgl.cc', | 166 'gl_surface_cgl.cc', |
| 167 'gl_surface_cgl.h', | 167 'gl_surface_cgl.h', |
| 168 ], | 168 ], |
| 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 ['OS=="mac" and use_webkit_compositor == 1', { |
| 176 'sources': [ |
| 177 'gl_context_nsview.mm', |
| 178 'gl_context_nsview.h', |
| 179 'gl_surface_nsview.mm', |
| 180 'gl_surface_nsview.h', |
| 181 ], |
| 182 }], |
| 175 ], | 183 ], |
| 176 }, | 184 }, |
| 177 ], | 185 ], |
| 178 } | 186 } |
| OLD | NEW |