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