| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 'target_name': 'compressed_textures_exe', | 211 'target_name': 'compressed_textures_exe', |
| 212 'type': 'executable', | 212 'type': 'executable', |
| 213 'dependencies': [ | 213 'dependencies': [ |
| 214 'gpu_demo_framework_exe', | 214 'gpu_demo_framework_exe', |
| 215 '../../third_party/gles2_book/gles2_book.gyp:es_util', | 215 '../../third_party/gles2_book/gles2_book.gyp:es_util', |
| 216 ], | 216 ], |
| 217 'sources': [ | 217 'sources': [ |
| 218 'compressed_textures/compressed_textures.cc', | 218 'compressed_textures/compressed_textures.cc', |
| 219 ], | 219 ], |
| 220 }, | 220 }, |
| 221 { |
| 222 'target_name': 'occlusion_query_exe', |
| 223 'type': 'executable', |
| 224 'dependencies': [ |
| 225 'gpu_demo_framework_exe', |
| 226 '../../third_party/gles2_book/gles2_book.gyp:es_util', |
| 227 ], |
| 228 'sources': [ |
| 229 'occlusion_query/occlusion_query.cc', |
| 230 ], |
| 231 }, |
| 221 ], | 232 ], |
| 222 'conditions': [ | 233 'conditions': [ |
| 223 ['enable_pepper_demos==1', { | 234 ['enable_pepper_demos==1', { |
| 224 'targets': [ | 235 'targets': [ |
| 225 { | 236 { |
| 226 'target_name': 'hello_triangle_ppapi', | 237 'target_name': 'hello_triangle_ppapi', |
| 227 'type': 'loadable_module', | 238 'type': 'loadable_module', |
| 228 'variables': { 'chromium_code': 0, }, | 239 'variables': { 'chromium_code': 0, }, |
| 229 'dependencies': [ 'gpu_demo_framework_ppapi', ], | 240 'dependencies': [ 'gpu_demo_framework_ppapi', ], |
| 230 'sources': [ | 241 'sources': [ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 'gles2_book/example.h', | 321 'gles2_book/example.h', |
| 311 'gles2_book/demo_texture_wrap.cc', | 322 'gles2_book/demo_texture_wrap.cc', |
| 312 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', | 323 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', |
| 313 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', | 324 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', |
| 314 ], | 325 ], |
| 315 }, | 326 }, |
| 316 ], | 327 ], |
| 317 }], | 328 }], |
| 318 ], | 329 ], |
| 319 } | 330 } |
| OLD | NEW |