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 'includes': [ | 6 'includes': [ |
7 '../../ppapi/ppapi.gypi', | 7 '../../ppapi/ppapi.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 'compressed_textures/compressed_textures.cc', | 218 'compressed_textures/compressed_textures.cc', |
219 ], | 219 ], |
220 }, | 220 }, |
221 { | 221 { |
222 'target_name': 'occlusion_query_exe', | 222 'target_name': 'occlusion_query_exe', |
223 'type': 'executable', | 223 'type': 'executable', |
224 'dependencies': [ | 224 'dependencies': [ |
225 'gpu_demo_framework_exe', | 225 'gpu_demo_framework_exe', |
226 '../../third_party/gles2_book/gles2_book.gyp:es_util', | 226 '../../third_party/gles2_book/gles2_book.gyp:es_util', |
227 ], | 227 ], |
| 228 'defines': [ |
| 229 'GL_GLEXT_PROTOTYPES', |
| 230 ], |
228 'sources': [ | 231 'sources': [ |
229 'occlusion_query/occlusion_query.cc', | 232 'occlusion_query/occlusion_query.cc', |
230 ], | 233 ], |
231 }, | 234 }, |
232 ], | 235 ], |
233 'conditions': [ | 236 'conditions': [ |
234 ['enable_pepper_demos==1', { | 237 ['enable_pepper_demos==1', { |
235 'targets': [ | 238 'targets': [ |
236 { | 239 { |
237 'target_name': 'hello_triangle_ppapi', | 240 'target_name': 'hello_triangle_ppapi', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 'gles2_book/example.h', | 324 'gles2_book/example.h', |
322 'gles2_book/demo_texture_wrap.cc', | 325 'gles2_book/demo_texture_wrap.cc', |
323 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', | 326 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', |
324 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', | 327 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', |
325 ], | 328 ], |
326 }, | 329 }, |
327 ], | 330 ], |
328 }], | 331 }], |
329 ], | 332 ], |
330 } | 333 } |
OLD | NEW |