OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/ui.gni") | |
6 | |
7 # GYP version: //gpu/command_buffer_gles2/command_buffer_gles2.gyp:command_buffe
r_gles2 | |
8 shared_library("command_buffer_gles2") { | |
9 sources = [ | |
10 # TODO(hendrikw): Move egl out of gles2_conform_support. | |
11 "../gles2_conform_support/egl/config.cc", | |
12 "../gles2_conform_support/egl/config.h", | |
13 "../gles2_conform_support/egl/display.cc", | |
14 "../gles2_conform_support/egl/display.h", | |
15 "../gles2_conform_support/egl/egl.cc", | |
16 "../gles2_conform_support/egl/surface.cc", | |
17 "../gles2_conform_support/egl/surface.h", | |
18 "command_buffer_egl.cc", | |
19 ] | |
20 | |
21 deps = [ | |
22 "//gpu/command_buffer/client:gles2_c_lib", | |
23 "//gpu/command_buffer/client:gles2_implementation", | |
24 "//gpu/command_buffer/service", | |
25 ] | |
26 | |
27 defines = [ | |
28 "EGLAPI=", | |
29 "EGLAPIENTRY=", | |
30 ] | |
31 } | |
OLD | NEW |