| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/linux/pkg_config.gni") | 7 import("//build/config/linux/pkg_config.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "android/gl_jni_registrar.cc", | 46 "android/gl_jni_registrar.cc", |
| 47 "android/gl_jni_registrar.h", | 47 "android/gl_jni_registrar.h", |
| 48 "android/scoped_java_surface.cc", | 48 "android/scoped_java_surface.cc", |
| 49 "android/scoped_java_surface.h", | 49 "android/scoped_java_surface.h", |
| 50 "android/surface_texture.cc", | 50 "android/surface_texture.cc", |
| 51 "android/surface_texture.h", | 51 "android/surface_texture.h", |
| 52 "android/surface_texture_listener.cc", | 52 "android/surface_texture_listener.cc", |
| 53 "android/surface_texture_listener.h", | 53 "android/surface_texture_listener.h", |
| 54 "ca_renderer_layer_params.cc", | 54 "ca_renderer_layer_params.cc", |
| 55 "ca_renderer_layer_params.h", | 55 "ca_renderer_layer_params.h", |
| 56 "dc_renderer_layer_params.cc", |
| 57 "dc_renderer_layer_params.h", |
| 56 "gl_bindings.cc", | 58 "gl_bindings.cc", |
| 57 "gl_bindings.h", | 59 "gl_bindings.h", |
| 58 "gl_bindings_autogen_gl.cc", | 60 "gl_bindings_autogen_gl.cc", |
| 59 "gl_bindings_autogen_gl.h", | 61 "gl_bindings_autogen_gl.h", |
| 60 "gl_bindings_autogen_osmesa.cc", | 62 "gl_bindings_autogen_osmesa.cc", |
| 61 "gl_bindings_autogen_osmesa.h", | 63 "gl_bindings_autogen_osmesa.h", |
| 62 "gl_context.cc", | 64 "gl_context.cc", |
| 63 "gl_context.h", | 65 "gl_context.h", |
| 64 "gl_context_osmesa.cc", | 66 "gl_context_osmesa.cc", |
| 65 "gl_context_osmesa.h", | 67 "gl_context_osmesa.h", |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 sources = [ | 445 sources = [ |
| 444 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 446 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 445 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 447 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 446 ] | 448 ] |
| 447 public_deps = [ | 449 public_deps = [ |
| 448 ":surface_jni_headers", | 450 ":surface_jni_headers", |
| 449 ] | 451 ] |
| 450 jni_package = "ui/gl" | 452 jni_package = "ui/gl" |
| 451 } | 453 } |
| 452 } | 454 } |
| OLD | NEW |