| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 | |
| 6 # This file was split off from ppapi.gyp to prevent PPAPI users from | |
| 7 # needing to DEPS in ~10K files due to mesa. | |
| 8 { | 5 { |
| 9 'includes': [ | 6 'includes': [ |
| 10 '../third_party/mesa/mesa.gypi', | 7 '../third_party/mesa/mesa.gypi', |
| 11 ], | 8 ], |
| 12 'targets': [ | 9 'targets': [ |
| 13 { | 10 { |
| 14 'target_name': 'ppapi_egl', | 11 'target_name': 'ppapi_egl', |
| 15 'type': 'static_library', | 12 'type': 'static_library', |
| 16 'dependencies': [ | 13 'dependencies': [ |
| 17 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', | 14 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'lib/gl/include', | 54 'lib/gl/include', |
| 58 ], | 55 ], |
| 59 'sources': [ | 56 'sources': [ |
| 60 'lib/gl/gles2/gl2ext_ppapi.c', | 57 'lib/gl/gles2/gl2ext_ppapi.c', |
| 61 'lib/gl/gles2/gl2ext_ppapi.h', | 58 'lib/gl/gles2/gl2ext_ppapi.h', |
| 62 'lib/gl/gles2/gles2.c', | 59 'lib/gl/gles2/gles2.c', |
| 63 ], | 60 ], |
| 64 }, | 61 }, |
| 65 ], | 62 ], |
| 66 } | 63 } |
| OLD | NEW |