OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 # GN version: //gpu:command_buffer_gles2 |
| 12 'target_name': 'command_buffer_gles2', |
| 13 'type': 'shared_library', |
| 14 'dependencies': [ |
| 15 '../../base/base.gyp:base', |
| 16 '../../gpu/gpu.gyp:gles2_c_lib', |
| 17 '../../gpu/gpu.gyp:gles2_implementation', |
| 18 '../../gpu/gpu.gyp:command_buffer_service', |
| 19 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 20 '../../ui/gl/gl.gyp:gl', |
| 21 ], |
| 22 'sources': [ |
| 23 # Note: sources list duplicated in GN build. |
| 24 # TODO(hendrikw): Move egl out of gles2_conform_support. |
| 25 '../gles2_conform_support/egl/config.cc', |
| 26 '../gles2_conform_support/egl/config.h', |
| 27 '../gles2_conform_support/egl/display.cc', |
| 28 '../gles2_conform_support/egl/display.h', |
| 29 '../gles2_conform_support/egl/egl.cc', |
| 30 '../gles2_conform_support/egl/surface.cc', |
| 31 '../gles2_conform_support/egl/surface.h', |
| 32 'command_buffer_egl.cc', |
| 33 ], |
| 34 'defines': [ |
| 35 'EGLAPI=', |
| 36 'EGLAPIENTRY=', |
| 37 ], |
| 38 }, |
| 39 ], |
| 40 } |
OLD | NEW |