| 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 'dependencies': [ | 28 'dependencies': [ |
| 29 '../../base/base.gyp:base', | 29 '../../base/base.gyp:base', |
| 30 '../../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 30 '../../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
| 31 '../../gpu/gpu.gyp:command_buffer_service', | 31 '../../gpu/gpu.gyp:command_buffer_service', |
| 32 '../../gpu/gpu.gyp:gles2_implementation_no_check', | 32 '../../gpu/gpu.gyp:gles2_implementation_no_check', |
| 33 '../../gpu/gpu.gyp:gpu', | 33 '../../gpu/gpu.gyp:gpu', |
| 34 '../../third_party/khronos/khronos.gyp:khronos_headers', | 34 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 35 '../../ui/base/ui_base.gyp:ui_base', | 35 '../../ui/base/ui_base.gyp:ui_base', |
| 36 '../../ui/gfx/gfx.gyp:gfx_geometry', | 36 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 37 '../../ui/gl/gl.gyp:gl', | 37 '../../ui/gl/gl.gyp:gl', |
| 38 '../../ui/gl/init/gl_init.gyp:gl_init', |
| 38 ], | 39 ], |
| 39 'sources': [ | 40 'sources': [ |
| 40 'egl/config.cc', | 41 'egl/config.cc', |
| 41 'egl/config.h', | 42 'egl/config.h', |
| 42 'egl/context.cc', | 43 'egl/context.cc', |
| 43 'egl/context.h', | 44 'egl/context.h', |
| 44 'egl/display.cc', | 45 'egl/display.cc', |
| 45 'egl/display.h', | 46 'egl/display.h', |
| 46 'egl/egl.cc', | 47 'egl/egl.cc', |
| 47 'egl/surface.cc', | 48 'egl/surface.cc', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'EGLAPI=', | 114 'EGLAPI=', |
| 114 'EGLAPIENTRY=', | 115 'EGLAPIENTRY=', |
| 115 ], | 116 ], |
| 116 'sources': [ | 117 'sources': [ |
| 117 '<@(bootstrap_sources_native)', | 118 '<@(bootstrap_sources_native)', |
| 118 'gles2_conform_support.c' | 119 'gles2_conform_support.c' |
| 119 ], | 120 ], |
| 120 }, | 121 }, |
| 121 ], | 122 ], |
| 122 } | 123 } |
| OLD | NEW |