| 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 '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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'dependencies': ['../../build/linux/system.gyp:gtk'], | 58 'dependencies': ['../../build/linux/system.gyp:gtk'], |
| 59 }], | 59 }], |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| 62 { | 62 { |
| 63 'target_name': 'gpu_demo_framework_ppapi', | 63 'target_name': 'gpu_demo_framework_ppapi', |
| 64 'suppress_wildcard': 1, # So that 'all' doesn't end up being a bundle. | 64 'suppress_wildcard': 1, # So that 'all' doesn't end up being a bundle. |
| 65 'type': 'static_library', | 65 'type': 'static_library', |
| 66 'dependencies': [ | 66 'dependencies': [ |
| 67 'gpu_demo_framework', | 67 'gpu_demo_framework', |
| 68 '../../ppapi/ppapi.gyp:ppapi_cpp_objects', | 68 '../../ppapi/ppapi_cpp.gyp:ppapi_cpp_objects', |
| 69 '../../ppapi/ppapi.gyp:ppapi_gles2', | 69 '../../ppapi/ppapi.gyp:ppapi_gles2', |
| 70 ], | 70 ], |
| 71 'include_dirs': [ | 71 'include_dirs': [ |
| 72 '../..', | 72 '../..', |
| 73 '../../ppapi/lib/gl/include', | 73 '../../ppapi/lib/gl/include', |
| 74 '../../third_party/gles2_book/Common/Include', | 74 '../../third_party/gles2_book/Common/Include', |
| 75 ], | 75 ], |
| 76 'sources': [ | 76 'sources': [ |
| 77 'framework/pepper.cc', | 77 'framework/pepper.cc', |
| 78 '../../third_party/gles2_book/Common/Include/esUtil.h', | 78 '../../third_party/gles2_book/Common/Include/esUtil.h', |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 'gles2_book/example.h', | 297 'gles2_book/example.h', |
| 298 'gles2_book/demo_texture_wrap.cc', | 298 'gles2_book/demo_texture_wrap.cc', |
| 299 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', | 299 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c', |
| 300 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', | 300 '../../third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h', |
| 301 ], | 301 ], |
| 302 }, | 302 }, |
| 303 ], | 303 ], |
| 304 }], | 304 }], |
| 305 ], | 305 ], |
| 306 } | 306 } |
| OLD | NEW |