Add custom_tabs_client to third_party.
[chromium-blink-merge.git] / ui / gl / BUILD.gn
blobf5f4134290b6875a9d984b77e86bbb767885e007
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
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
6 import("//testing/test.gni")
8 if (is_android) {
9   import("//build/config/android/config.gni")
10   import("//build/config/android/rules.gni")
13 config("gl_config") {
14   if (use_x11) {
15     defines = [ "GL_GLEXT_PROTOTYPES" ]
16   }
19 component("gl") {
20   output_name = "gl_wrapper"  # Avoid colliding with OS X"s libGL.dylib.
22   sources = [
23     "android/gl_jni_registrar.cc",
24     "android/gl_jni_registrar.h",
25     "android/scoped_java_surface.cc",
26     "android/scoped_java_surface.h",
27     "android/surface_texture.cc",
28     "android/surface_texture.h",
29     "android/surface_texture_listener.cc",
30     "android/surface_texture_listener.h",
31     "gl_bindings.cc",
32     "gl_bindings.h",
33     "gl_bindings_autogen_gl.cc",
34     "gl_bindings_autogen_gl.h",
35     "gl_bindings_autogen_osmesa.cc",
36     "gl_bindings_autogen_osmesa.h",
37     "gl_bindings_skia_in_process.cc",
38     "gl_bindings_skia_in_process.h",
39     "gl_context.cc",
40     "gl_context.h",
41     "gl_context_android.cc",
42     "gl_context_mac.mm",
43     "gl_context_osmesa.cc",
44     "gl_context_osmesa.h",
45     "gl_context_stub.cc",
46     "gl_context_stub.h",
47     "gl_context_stub_with_extensions.cc",
48     "gl_context_stub_with_extensions.h",
49     "gl_context_win.cc",
50     "gl_enums.cc",
51     "gl_enums.h",
52     "gl_enums_implementation_autogen.h",
53     "gl_export.h",
54     "gl_fence.cc",
55     "gl_fence.h",
56     "gl_fence_arb.cc",
57     "gl_fence_arb.h",
58     "gl_fence_nv.cc",
59     "gl_fence_nv.h",
60     "gl_gl_api_implementation.cc",
61     "gl_gl_api_implementation.h",
62     "gl_image.h",
63     "gl_image_memory.cc",
64     "gl_image_memory.h",
65     "gl_image_ref_counted_memory.cc",
66     "gl_image_ref_counted_memory.h",
67     "gl_image_shared_memory.cc",
68     "gl_image_shared_memory.h",
69     "gl_image_stub.cc",
70     "gl_image_stub.h",
71     "gl_implementation.cc",
72     "gl_implementation.h",
73     "gl_implementation_android.cc",
74     "gl_implementation_mac.cc",
75     "gl_implementation_win.cc",
76     "gl_osmesa_api_implementation.cc",
77     "gl_osmesa_api_implementation.h",
78     "gl_share_group.cc",
79     "gl_share_group.h",
80     "gl_state_restorer.cc",
81     "gl_state_restorer.h",
82     "gl_surface.cc",
83     "gl_surface.h",
84     "gl_surface_android.cc",
85     "gl_surface_mac.cc",
86     "gl_surface_osmesa.cc",
87     "gl_surface_osmesa.h",
88     "gl_surface_stub.cc",
89     "gl_surface_stub.h",
90     "gl_surface_win.cc",
91     "gl_switches.cc",
92     "gl_switches.h",
93     "gl_version_info.cc",
94     "gl_version_info.h",
95     "gpu_switching_manager.cc",
96     "gpu_switching_manager.h",
97     "gpu_timing.cc",
98     "gpu_timing.h",
99     "scoped_binders.cc",
100     "scoped_binders.h",
101     "scoped_make_current.cc",
102     "scoped_make_current.h",
103     "sync_control_vsync_provider.cc",
104     "sync_control_vsync_provider.h",
105   ]
107   defines = [ "GL_IMPLEMENTATION" ]
109   include_dirs = [
110     "//third_party/switfshader/include",
111     "//third_party/mesa/src/include",
112   ]
114   all_dependent_configs = [ ":gl_config" ]
116   public_configs = [ "//third_party/khronos:khronos_headers" ]
118   deps = [
119     "//base/third_party/dynamic_annotations",
120     "//skia",
121   ]
122   public_deps = [
123     "//base",
124     "//third_party/mesa:mesa_headers",
125     "//ui/events/platform",
126     "//ui/gfx",
127     "//ui/gfx/geometry",
128   ]
130   if (is_win || is_android || is_linux) {
131     sources += [
132       "egl_util.cc",
133       "egl_util.h",
134       "gl_bindings_autogen_egl.cc",
135       "gl_bindings_autogen_egl.h",
136       "gl_context_egl.cc",
137       "gl_context_egl.h",
138       "gl_fence_egl.cc",
139       "gl_fence_egl.h",
140       "gl_image_egl.cc",
141       "gl_image_egl.h",
142       "gl_surface_egl.cc",
143       "gl_surface_egl.h",
144     ]
145   }
146   if (is_android || is_linux) {
147     sources += [
148       "gl_implementation_osmesa.cc",
149       "gl_implementation_osmesa.h",
150     ]
151   }
152   if (is_linux) {
153     deps += [ "//third_party/libevent" ]
154     sources += [
155       "gl_image_linux_dma_buffer.cc",
156       "gl_image_linux_dma_buffer.h",
157     ]
158   }
159   if (use_x11) {
160     sources += [
161       "gl_bindings_autogen_glx.cc",
162       "gl_bindings_autogen_glx.h",
163       "gl_context_glx.cc",
164       "gl_context_glx.h",
165       "gl_context_x11.cc",
166       "gl_egl_api_implementation.cc",
167       "gl_egl_api_implementation.h",
168       "gl_glx_api_implementation.cc",
169       "gl_glx_api_implementation.h",
170       "gl_image_glx.cc",
171       "gl_image_glx.h",
172       "gl_implementation_x11.cc",
173       "gl_surface_glx.cc",
174       "gl_surface_glx.h",
175       "gl_surface_x11.cc",
176     ]
178     configs += [
179       "//build/config/linux:x11",
180       "//build/config/linux:xcomposite",
181       "//build/config/linux:xext",
182     ]
184     deps += [ "//ui/gfx/x" ]
185   }
186   if (is_win) {
187     sources += [
188       "angle_platform_impl.cc",
189       "angle_platform_impl.h",
190       "gl_bindings_autogen_wgl.cc",
191       "gl_bindings_autogen_wgl.h",
192       "gl_context_wgl.cc",
193       "gl_context_wgl.h",
194       "gl_egl_api_implementation.cc",
195       "gl_egl_api_implementation.h",
196       "gl_surface_wgl.cc",
197       "gl_surface_wgl.h",
198       "gl_wgl_api_implementation.cc",
199       "gl_wgl_api_implementation.h",
200     ]
202     libs = [ "dwmapi.lib" ]
203     ldflags = [ "/DELAYLOAD:dwmapi.dll" ]
205     data_deps = [
206       "//third_party/angle:libEGL",
207       "//third_party/angle:libGLESv2",
208       "//third_party/mesa:osmesa",
209     ]
210   }
211   if (is_mac) {
212     sources += [
213       "gl_context_cgl.cc",
214       "gl_context_cgl.h",
215       "gl_fence_apple.cc",
216       "gl_fence_apple.h",
217       "gl_image_io_surface.cc",
218       "gl_image_io_surface.h",
219       "scoped_cgl.cc",
220       "scoped_cgl.h",
221     ]
223     libs = [
224       "IOSurface.framework",
225       "OpenGL.framework",
226     ]
227   }
228   if (is_android) {
229     sources += [
230       "gl_egl_api_implementation.cc",
231       "gl_egl_api_implementation.h",
232       "gl_image_surface_texture.cc",
233       "gl_image_surface_texture.h",
234     ]
236     defines += [
237       "GL_GLEXT_PROTOTYPES",
238       "EGL_EGLEXT_PROTOTYPES",
239     ]
241     libs = [ "android" ]
243     deps += [
244       ":gl_jni_headers",
245       "//ui/android:ui_java",
246     ]
247   }
248   if (use_ozone) {
249     sources += [
250       "gl_context_ozone.cc",
251       "gl_egl_api_implementation.cc",
252       "gl_egl_api_implementation.h",
253       "gl_implementation_ozone.cc",
254       "gl_surface_ozone.cc",
255     ]
256     deps += [
257       "//ui/ozone",
258       "//ui/ozone:ozone_base",
259     ]
260   }
263 source_set("gl_unittest_utils") {
264   testonly = true
265   sources = [
266     "gl_bindings_autogen_mock.cc",
267     "gl_bindings_autogen_mock.h",
268     "gl_mock.cc",
269     "gl_mock.h",
270     "gl_mock_autogen_gl.h",
271     "gpu_timing_fake.cc",
272     "gpu_timing_fake.h",
273   ]
275   configs += [ "//third_party/khronos:khronos_headers" ]
277   deps = [
278     ":gl",
279     "//testing/gmock",
280   ]
283 test("gl_unittests") {
284   sources = [
285     "gl_api_unittest.cc",
286     "gpu_timing_unittest.cc",
287     "test/run_all_unittests.cc",
288   ]
290   if (is_win || is_android || is_linux) {
291     sources += [
292       "egl_api_unittest.cc",
293       "test/egl_initialization_displays_unittest.cc",
294     ]
295   }
297   include_dirs = [ "//third_party/khronos" ]
299   deps = [
300     ":gl",
301     ":gl_unittest_utils",
302     "//base",
303     "//base/test:test_support",
304     "//testing/gmock",
305     "//testing/gtest",
306   ]
309 if (is_android) {
310   generate_jar_jni("surface_jni_headers") {
311     jni_package = "ui/gl"
312     classes = [ "android/view/Surface.class" ]
313   }
315   generate_jni("gl_jni_headers") {
316     deps = [
317       ":surface_jni_headers",
318     ]
319     sources = [
320       "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
321       "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java",
322     ]
323     jni_package = "ui/gl"
324   }