| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 '<(gl_binding_output_dir)/gl_bindings_autogen_wgl.h', | 102 '<(gl_binding_output_dir)/gl_bindings_autogen_wgl.h', |
| 103 ], | 103 ], |
| 104 'action': [ | 104 'action': [ |
| 105 'python', | 105 'python', |
| 106 'generate_bindings.py', | 106 'generate_bindings.py', |
| 107 '<(gl_binding_output_dir)', | 107 '<(gl_binding_output_dir)', |
| 108 ], | 108 ], |
| 109 }, | 109 }, |
| 110 ], | 110 ], |
| 111 'conditions': [ | 111 'conditions': [ |
| 112 ['OS != "mac"', { | 112 ['OS != "mac" and OS != "android"', { |
| 113 'sources': [ | 113 'sources': [ |
| 114 'egl_util.cc', | 114 'egl_util.cc', |
| 115 'egl_util.h', | 115 'egl_util.h', |
| 116 'gl_context_egl.cc', | 116 'gl_context_egl.cc', |
| 117 'gl_context_egl.h', | 117 'gl_context_egl.h', |
| 118 'gl_surface_egl.cc', | 118 'gl_surface_egl.cc', |
| 119 'gl_surface_egl.h', | 119 'gl_surface_egl.h', |
| 120 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', | 120 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', |
| 121 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', | 121 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', |
| 122 ], | 122 ], |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'link_settings': { | 164 'link_settings': { |
| 165 'libraries': [ | 165 'libraries': [ |
| 166 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 166 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 167 ], | 167 ], |
| 168 }, | 168 }, |
| 169 }], | 169 }], |
| 170 ], | 170 ], |
| 171 }, | 171 }, |
| 172 ], | 172 ], |
| 173 } | 173 } |
| OLD | NEW |