OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |