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

Side by Side Diff: gpu/BUILD.gn

Issue 1739033002: Revert of 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: Created 4 years, 10 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
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "//gpu/ipc:ipc_sources", 48 "//gpu/ipc:ipc_sources",
49 ] 49 ]
50 } 50 }
51 51
52 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 52 # GYP version: //gpu/gpu.gyp:command_buffer_gles2
53 shared_library("command_buffer_gles2") { 53 shared_library("command_buffer_gles2") {
54 sources = [ 54 sources = [
55 # TODO(hendrikw): Move egl out of gles2_conform_support. 55 # TODO(hendrikw): Move egl out of gles2_conform_support.
56 "gles2_conform_support/egl/config.cc", 56 "gles2_conform_support/egl/config.cc",
57 "gles2_conform_support/egl/config.h", 57 "gles2_conform_support/egl/config.h",
58 "gles2_conform_support/egl/context.cc",
59 "gles2_conform_support/egl/context.h",
60 "gles2_conform_support/egl/display.cc", 58 "gles2_conform_support/egl/display.cc",
61 "gles2_conform_support/egl/display.h", 59 "gles2_conform_support/egl/display.h",
62 "gles2_conform_support/egl/egl.cc", 60 "gles2_conform_support/egl/egl.cc",
63 "gles2_conform_support/egl/surface.cc", 61 "gles2_conform_support/egl/surface.cc",
64 "gles2_conform_support/egl/surface.h", 62 "gles2_conform_support/egl/surface.h",
65 "gles2_conform_support/egl/test_support.cc", 63 "gles2_conform_support/egl/test_support.cc",
66 "gles2_conform_support/egl/test_support.h", 64 "gles2_conform_support/egl/test_support.h",
67 "gles2_conform_support/egl/thread_state.cc",
68 "gles2_conform_support/egl/thread_state.h",
69 ] 65 ]
70 66
71 deps = [ 67 deps = [
72 ":gpu", 68 ":gpu",
73 "//base", 69 "//base",
74 "//gpu/command_buffer/client:gles2_c_lib", 70 "//gpu/command_buffer/client:gles2_c_lib",
75 "//gpu/command_buffer/client:gles2_implementation", 71 "//gpu/command_buffer/client:gles2_implementation",
76 "//gpu/command_buffer/common:gles2_utils",
77 "//ui/gl:gl", 72 "//ui/gl:gl",
78 ] 73 ]
79 74
80 defines = [ 75 defines = [
81 "COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY", 76 "COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY",
82 "EGLAPIENTRY=", 77 "EGLAPIENTRY=",
83 ] 78 ]
84 if (current_os == "win") { 79 if (current_os == "win") {
85 defines += [ "EGLAPI=__declspec(dllexport)" ] 80 defines += [ "EGLAPI=__declspec(dllexport)" ]
86 } else { 81 } else {
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 "//base", 346 "//base",
352 "//base/test:test_support", 347 "//base/test:test_support",
353 "//gpu/command_buffer/service", 348 "//gpu/command_buffer/service",
354 "//testing/gmock", 349 "//testing/gmock",
355 "//testing/gtest", 350 "//testing/gtest",
356 "//testing/perf", 351 "//testing/perf",
357 "//ui/gfx/geometry", 352 "//ui/gfx/geometry",
358 "//ui/gl", 353 "//ui/gl",
359 ] 354 ]
360 } 355 }
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698