| 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/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 use_egl = is_win || is_android || is_linux | 9 use_egl = is_win || is_android || is_linux |
| 10 use_glx = use_x11 | 10 use_glx = use_x11 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 sources = [ | 39 sources = [ |
| 40 "android/gl_jni_registrar.cc", | 40 "android/gl_jni_registrar.cc", |
| 41 "android/gl_jni_registrar.h", | 41 "android/gl_jni_registrar.h", |
| 42 "android/scoped_java_surface.cc", | 42 "android/scoped_java_surface.cc", |
| 43 "android/scoped_java_surface.h", | 43 "android/scoped_java_surface.h", |
| 44 "android/surface_texture.cc", | 44 "android/surface_texture.cc", |
| 45 "android/surface_texture.h", | 45 "android/surface_texture.h", |
| 46 "android/surface_texture_listener.cc", | 46 "android/surface_texture_listener.cc", |
| 47 "android/surface_texture_listener.h", | 47 "android/surface_texture_listener.h", |
| 48 "ca_renderer_layer_params.cc", |
| 49 "ca_renderer_layer_params.h", |
| 48 "gl_bindings.cc", | 50 "gl_bindings.cc", |
| 49 "gl_bindings.h", | 51 "gl_bindings.h", |
| 50 "gl_bindings_autogen_gl.cc", | 52 "gl_bindings_autogen_gl.cc", |
| 51 "gl_bindings_autogen_gl.h", | 53 "gl_bindings_autogen_gl.h", |
| 52 "gl_bindings_autogen_osmesa.cc", | 54 "gl_bindings_autogen_osmesa.cc", |
| 53 "gl_bindings_autogen_osmesa.h", | 55 "gl_bindings_autogen_osmesa.h", |
| 54 "gl_context.cc", | 56 "gl_context.cc", |
| 55 "gl_context.h", | 57 "gl_context.h", |
| 56 "gl_context_osmesa.cc", | 58 "gl_context_osmesa.cc", |
| 57 "gl_context_osmesa.h", | 59 "gl_context_osmesa.h", |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 sources = [ | 412 sources = [ |
| 411 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 413 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 412 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 414 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 413 ] | 415 ] |
| 414 public_deps = [ | 416 public_deps = [ |
| 415 ":surface_jni_headers", | 417 ":surface_jni_headers", |
| 416 ] | 418 ] |
| 417 jni_package = "ui/gl" | 419 jni_package = "ui/gl" |
| 418 } | 420 } |
| 419 } | 421 } |
| OLD | NEW |