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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "//gpu/ipc/service:ipc_service_sources", | 50 "//gpu/ipc/service:ipc_service_sources", |
51 ] | 51 ] |
52 } | 52 } |
53 | 53 |
54 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 | 54 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 |
55 shared_library("command_buffer_gles2") { | 55 shared_library("command_buffer_gles2") { |
56 sources = [ | 56 sources = [ |
57 # TODO(hendrikw): Move egl out of gles2_conform_support. | 57 # TODO(hendrikw): Move egl out of gles2_conform_support. |
58 "gles2_conform_support/egl/config.cc", | 58 "gles2_conform_support/egl/config.cc", |
59 "gles2_conform_support/egl/config.h", | 59 "gles2_conform_support/egl/config.h", |
60 "gles2_conform_support/egl/context.cc", | |
61 "gles2_conform_support/egl/context.h", | |
62 "gles2_conform_support/egl/display.cc", | 60 "gles2_conform_support/egl/display.cc", |
63 "gles2_conform_support/egl/display.h", | 61 "gles2_conform_support/egl/display.h", |
64 "gles2_conform_support/egl/egl.cc", | 62 "gles2_conform_support/egl/egl.cc", |
65 "gles2_conform_support/egl/surface.cc", | 63 "gles2_conform_support/egl/surface.cc", |
66 "gles2_conform_support/egl/surface.h", | 64 "gles2_conform_support/egl/surface.h", |
67 "gles2_conform_support/egl/test_support.cc", | 65 "gles2_conform_support/egl/test_support.cc", |
68 "gles2_conform_support/egl/test_support.h", | 66 "gles2_conform_support/egl/test_support.h", |
69 "gles2_conform_support/egl/thread_state.cc", | |
70 "gles2_conform_support/egl/thread_state.h", | |
71 ] | 67 ] |
72 | 68 |
73 deps = [ | 69 deps = [ |
74 ":gpu", | 70 ":gpu", |
75 "//base", | 71 "//base", |
76 "//gpu/command_buffer/client:gles2_c_lib", | 72 "//gpu/command_buffer/client:gles2_c_lib", |
77 "//gpu/command_buffer/client:gles2_implementation", | 73 "//gpu/command_buffer/client:gles2_implementation", |
78 "//gpu/command_buffer/common:gles2_utils", | |
79 "//ui/gl:gl", | 74 "//ui/gl:gl", |
80 ] | 75 ] |
81 | 76 |
82 defines = [ | 77 defines = [ |
83 "COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY", | 78 "COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY", |
84 "EGLAPIENTRY=", | 79 "EGLAPIENTRY=", |
85 ] | 80 ] |
86 if (current_os == "win") { | 81 if (current_os == "win") { |
87 defines += [ "EGLAPI=__declspec(dllexport)" ] | 82 defines += [ "EGLAPI=__declspec(dllexport)" ] |
88 } else { | 83 } else { |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 "//base", | 376 "//base", |
382 "//base/test:test_support", | 377 "//base/test:test_support", |
383 "//gpu/command_buffer/service", | 378 "//gpu/command_buffer/service", |
384 "//testing/gmock", | 379 "//testing/gmock", |
385 "//testing/gtest", | 380 "//testing/gtest", |
386 "//testing/perf", | 381 "//testing/perf", |
387 "//ui/gfx/geometry", | 382 "//ui/gfx/geometry", |
388 "//ui/gl", | 383 "//ui/gl", |
389 ] | 384 ] |
390 } | 385 } |
OLD | NEW |