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': [ |
11 { | 11 { |
12 'target_name': 'gl', | 12 'target_name': 'gl', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
16 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 16 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 17 '<(DEPTH)/gpu/command_buffer/command_buffer.gyp:gles2_utils', |
17 '<(DEPTH)/skia/skia.gyp:skia', | 18 '<(DEPTH)/skia/skia.gyp:skia', |
18 '<(DEPTH)/ui/ui.gyp:ui', | 19 '<(DEPTH)/ui/ui.gyp:ui', |
19 ], | 20 ], |
20 'variables': { | 21 'variables': { |
21 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl', | 22 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gl', |
22 }, | 23 }, |
23 'defines': [ | 24 'defines': [ |
24 'GL_IMPLEMENTATION', | 25 'GL_IMPLEMENTATION', |
25 ], | 26 ], |
26 'include_dirs': [ | 27 'include_dirs': [ |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 ], | 185 ], |
185 'defines': [ | 186 'defines': [ |
186 'GL_GLEXT_PROTOTYPES', | 187 'GL_GLEXT_PROTOTYPES', |
187 'EGL_EGLEXT_PROTOTYPES', | 188 'EGL_EGLEXT_PROTOTYPES', |
188 ], | 189 ], |
189 }], | 190 }], |
190 ], | 191 ], |
191 }, | 192 }, |
192 ], | 193 ], |
193 } | 194 } |
OLD | NEW |