| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # These are defined here because we want to be able to compile them on | 8 # These are defined here because we want to be able to compile them on |
| 9 # the buildbots without needed the OpenGL ES 2.0 conformance tests | 9 # the buildbots without needed the OpenGL ES 2.0 conformance tests |
| 10 # which are not open source. | 10 # which are not open source. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 }], | 28 }], |
| 29 ], | 29 ], |
| 30 | 30 |
| 31 }, | 31 }, |
| 32 'targets': [ | 32 'targets': [ |
| 33 { | 33 { |
| 34 'target_name': 'egl_native', | 34 'target_name': 'egl_native', |
| 35 'type': 'static_library', | 35 'type': 'static_library', |
| 36 'dependencies': [ | 36 'dependencies': [ |
| 37 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
| 38 '../../gpu/gpu.gyp:command_buffer_service', |
| 39 '../../gpu/gpu.gyp:gles2_implementation_client_side_arrays_no_check', |
| 38 '../../gpu/gpu.gyp:gpu', | 40 '../../gpu/gpu.gyp:gpu', |
| 39 '../../gpu/gpu.gyp:gles2_implementation_client_side_arrays_no_check', | |
| 40 '../../gpu/gpu.gyp:command_buffer_service', | |
| 41 '../../third_party/khronos/khronos.gyp:khronos_headers', | 41 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 42 '../../ui/base/ui_base.gyp:ui_base', |
| 42 '../../ui/gfx/gfx.gyp:gfx', | 43 '../../ui/gfx/gfx.gyp:gfx', |
| 43 '../../ui/gfx/gfx.gyp:gfx_geometry', | 44 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 44 '../../ui/gl/gl.gyp:gl', | 45 '../../ui/gl/gl.gyp:gl', |
| 45 '../../ui/ui.gyp:ui', | |
| 46 ], | 46 ], |
| 47 'sources': [ | 47 'sources': [ |
| 48 'egl/config.cc', | 48 'egl/config.cc', |
| 49 'egl/config.h', | 49 'egl/config.h', |
| 50 'egl/display.cc', | 50 'egl/display.cc', |
| 51 'egl/display.h', | 51 'egl/display.h', |
| 52 'egl/egl.cc', | 52 'egl/egl.cc', |
| 53 'egl/surface.cc', | 53 'egl/surface.cc', |
| 54 'egl/surface.h', | 54 'egl/surface.h', |
| 55 ], | 55 ], |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 'EGLAPI=', | 134 'EGLAPI=', |
| 135 'EGLAPIENTRY=', | 135 'EGLAPIENTRY=', |
| 136 ], | 136 ], |
| 137 'sources': [ | 137 'sources': [ |
| 138 '<@(bootstrap_sources_native)', | 138 '<@(bootstrap_sources_native)', |
| 139 'gles2_conform_support.c' | 139 'gles2_conform_support.c' |
| 140 ], | 140 ], |
| 141 }, | 141 }, |
| 142 ], | 142 ], |
| 143 } | 143 } |
| OLD | NEW |