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 # GYP version: gpu/gles2_conform_support/gles_conform_support.gyp:egl_native |
| 6 source_set("egl") { |
| 7 output_name = "egl_native" |
| 8 sources = [ |
| 9 "config.cc", |
| 10 "config.h", |
| 11 "display.cc", |
| 12 "display.h", |
| 13 "egl.cc", |
| 14 "surface.cc", |
| 15 "surface.h", |
| 16 ] |
| 17 |
| 18 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 19 |
| 20 defines = [ |
| 21 "EGLAPI=", |
| 22 "EGLAPIENTRY=", |
| 23 ] |
| 24 |
| 25 deps = [ |
| 26 "//base", |
| 27 "//gpu/command_buffer/client:gles2_c_lib", |
| 28 "//gpu/command_buffer/client:gles2_implementation_no_check", |
| 29 "//gpu/command_buffer/service", |
| 30 "//gpu", |
| 31 "//ui/base", |
| 32 "//ui/gfx", |
| 33 "//ui/gfx/geometry", |
| 34 "//ui/gl", |
| 35 ] |
| 36 } |
OLD | NEW |