Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: gpu/gles2_conform_support/egl/BUILD.gn

Issue 1714883002: command_buffer_gles2: Implement EGL default Display as a global object (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@command_buffer_gles2-multiple-contexts
Patch Set: win fixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
11 "display.cc", 13 "display.cc",
12 "display.h", 14 "display.h",
13 "egl.cc", 15 "egl.cc",
14 "surface.cc", 16 "surface.cc",
15 "surface.h", 17 "surface.h",
18 "thread_state.cc",
19 "thread_state.h",
16 ] 20 ]
17 21
18 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 22 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
19 23
20 defines = [ 24 defines = [
21 "EGLAPI=", 25 "EGLAPI=",
22 "EGLAPIENTRY=", 26 "EGLAPIENTRY=",
23 ] 27 ]
24 28
25 deps = [ 29 deps = [
26 "//base", 30 "//base",
27 "//gpu", 31 "//gpu",
28 "//gpu:command_buffer_gles2", 32 "//gpu:command_buffer_gles2",
29 "//gpu/command_buffer/client:gles2_c_lib_nocheck", 33 "//gpu/command_buffer/client:gles2_c_lib_nocheck",
30 "//gpu/command_buffer/client:gles2_implementation_no_check", 34 "//gpu/command_buffer/client:gles2_implementation_no_check",
35 "//gpu/command_buffer/common:gles2_utils",
31 "//gpu/command_buffer/service", 36 "//gpu/command_buffer/service",
32 "//ui/base", 37 "//ui/base",
33 "//ui/gfx", 38 "//ui/gfx",
34 "//ui/gfx/geometry", 39 "//ui/gfx/geometry",
35 "//ui/gl", 40 "//ui/gl",
36 ] 41 ]
37 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698