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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 use_egl = is_win || is_android || is_linux | 8 use_egl = is_win || is_android || is_linux |
9 use_glx = use_x11 | 9 use_glx = use_x11 |
10 | 10 |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 "gl_fence_apple.h", | 252 "gl_fence_apple.h", |
253 "gl_image_io_surface.h", | 253 "gl_image_io_surface.h", |
254 "gl_image_io_surface.mm", | 254 "gl_image_io_surface.mm", |
255 "scoped_cgl.cc", | 255 "scoped_cgl.cc", |
256 "scoped_cgl.h", | 256 "scoped_cgl.h", |
257 "yuv_to_rgb_converter.cc", | 257 "yuv_to_rgb_converter.cc", |
258 "yuv_to_rgb_converter.h", | 258 "yuv_to_rgb_converter.h", |
259 ] | 259 ] |
260 | 260 |
261 libs = [ | 261 libs = [ |
| 262 "CoreFoundation.framework", |
262 "IOSurface.framework", | 263 "IOSurface.framework", |
263 "OpenGL.framework", | 264 "OpenGL.framework", |
264 "Quartz.framework", | 265 "Quartz.framework", |
265 ] | 266 ] |
266 } | 267 } |
267 if (is_android) { | 268 if (is_android) { |
268 sources += [ | 269 sources += [ |
269 "gl_image_surface_texture.cc", | 270 "gl_image_surface_texture.cc", |
270 "gl_image_surface_texture.h", | 271 "gl_image_surface_texture.h", |
271 ] | 272 ] |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 sources = [ | 394 sources = [ |
394 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 395 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
395 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 396 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
396 ] | 397 ] |
397 public_deps = [ | 398 public_deps = [ |
398 ":surface_jni_headers", | 399 ":surface_jni_headers", |
399 ] | 400 ] |
400 jni_package = "ui/gl" | 401 jni_package = "ui/gl" |
401 } | 402 } |
402 } | 403 } |
OLD | NEW |