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", | |
50 "gl_bindings.cc", | 48 "gl_bindings.cc", |
51 "gl_bindings.h", | 49 "gl_bindings.h", |
52 "gl_bindings_autogen_gl.cc", | 50 "gl_bindings_autogen_gl.cc", |
53 "gl_bindings_autogen_gl.h", | 51 "gl_bindings_autogen_gl.h", |
54 "gl_bindings_autogen_osmesa.cc", | 52 "gl_bindings_autogen_osmesa.cc", |
55 "gl_bindings_autogen_osmesa.h", | 53 "gl_bindings_autogen_osmesa.h", |
56 "gl_context.cc", | 54 "gl_context.cc", |
57 "gl_context.h", | 55 "gl_context.h", |
58 "gl_context_osmesa.cc", | 56 "gl_context_osmesa.cc", |
59 "gl_context_osmesa.h", | 57 "gl_context_osmesa.h", |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 sources = [ | 410 sources = [ |
413 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 411 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
414 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 412 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
415 ] | 413 ] |
416 public_deps = [ | 414 public_deps = [ |
417 ":surface_jni_headers", | 415 ":surface_jni_headers", |
418 ] | 416 ] |
419 jni_package = "ui/gl" | 417 jni_package = "ui/gl" |
420 } | 418 } |
421 } | 419 } |
OLD | NEW |