Add @VisibleForTesting to fix ChromePublic release build.
[chromium-blink-merge.git] / gpu / gles2_conform_support / egl / BUILD.gn
blob32fb8706ef4214a4cf77ea5658f88dac3b942f46
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.
5 # GYP version: gpu/gles2_conform_support/gles_conform_support.gyp:egl_native
6 source_set("egl") {
7   output_name = "egl_native"
8   sources = [
9     "config.cc",
10     "config.h",
11     "display.cc",
12     "display.h",
13     "egl.cc",
14     "surface.cc",
15     "surface.h",
16   ]
18   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
20   defines = [
21     "EGLAPI=",
22     "EGLAPIENTRY=",
23   ]
25   deps = [
26     "//base",
27     "//gpu/command_buffer/client:gles2_implementation_no_check",
28     "//gpu/command_buffer/service",
29     "//gpu",
30     "//ui/base",
31     "//ui/gfx",
32     "//ui/gfx/geometry",
33     "//ui/gl",
34   ]