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 "context.cc", | |
12 "context.h", | |
13 "display.cc", | 11 "display.cc", |
14 "display.h", | 12 "display.h", |
15 "egl.cc", | 13 "egl.cc", |
16 "surface.cc", | 14 "surface.cc", |
17 "surface.h", | 15 "surface.h", |
18 "test_support.cc", | |
19 "test_support.h", | |
20 "thread_state.cc", | |
21 "thread_state.h", | |
22 ] | 16 ] |
23 | 17 |
24 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 18 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
25 | 19 |
26 defines = [ | 20 defines = [ |
27 "EGLAPI=", | 21 "EGLAPI=", |
28 "EGLAPIENTRY=", | 22 "EGLAPIENTRY=", |
29 ] | 23 ] |
30 | 24 |
31 deps = [ | 25 deps = [ |
32 "//base", | 26 "//base", |
33 "//gpu", | 27 "//gpu", |
34 "//gpu:command_buffer_gles2", | 28 "//gpu:command_buffer_gles2", |
35 "//gpu/command_buffer/client:gles2_c_lib_nocheck", | 29 "//gpu/command_buffer/client:gles2_c_lib_nocheck", |
36 "//gpu/command_buffer/client:gles2_implementation_no_check", | 30 "//gpu/command_buffer/client:gles2_implementation_no_check", |
37 "//gpu/command_buffer/common:gles2_utils", | |
38 "//gpu/command_buffer/service", | 31 "//gpu/command_buffer/service", |
39 "//ui/base", | 32 "//ui/base", |
40 "//ui/gfx", | 33 "//ui/gfx", |
41 "//ui/gfx/geometry", | 34 "//ui/gfx/geometry", |
42 "//ui/gl", | 35 "//ui/gl", |
43 ] | 36 ] |
44 } | 37 } |
OLD | NEW |