| 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 if (is_android) { | 6 if (is_android) { |
| 7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "gl_image_linux_dma_buffer.h", | 156 "gl_image_linux_dma_buffer.h", |
| 157 ] | 157 ] |
| 158 } | 158 } |
| 159 if (use_x11) { | 159 if (use_x11) { |
| 160 sources += [ | 160 sources += [ |
| 161 "gl_context_glx.cc", | 161 "gl_context_glx.cc", |
| 162 "gl_context_glx.h", | 162 "gl_context_glx.h", |
| 163 "gl_context_x11.cc", | 163 "gl_context_x11.cc", |
| 164 "gl_glx_api_implementation.cc", | 164 "gl_glx_api_implementation.cc", |
| 165 "gl_glx_api_implementation.h", | 165 "gl_glx_api_implementation.h", |
| 166 "gl_image_glx.cc", |
| 167 "gl_image_glx.h", |
| 166 "gl_implementation_x11.cc", | 168 "gl_implementation_x11.cc", |
| 167 "gl_surface_glx.cc", | 169 "gl_surface_glx.cc", |
| 168 "gl_surface_glx.h", | 170 "gl_surface_glx.h", |
| 169 "gl_surface_x11.cc", | 171 "gl_surface_x11.cc", |
| 170 "gl_egl_api_implementation.cc", | 172 "gl_egl_api_implementation.cc", |
| 171 "gl_egl_api_implementation.h", | 173 "gl_egl_api_implementation.h", |
| 172 "$gl_binding_output_dir/gl_bindings_autogen_glx.cc", | 174 "$gl_binding_output_dir/gl_bindings_autogen_glx.cc", |
| 173 "$gl_binding_output_dir/gl_bindings_autogen_glx.h", | 175 "$gl_binding_output_dir/gl_bindings_autogen_glx.h", |
| 174 ] | 176 ] |
| 175 | 177 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 deps = [ | 339 deps = [ |
| 338 ":surface_jni_headers", | 340 ":surface_jni_headers", |
| 339 ] | 341 ] |
| 340 sources = [ | 342 sources = [ |
| 341 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 343 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 342 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 344 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 343 ] | 345 ] |
| 344 jni_package = "ui/gl" | 346 jni_package = "ui/gl" |
| 345 } | 347 } |
| 346 } | 348 } |
| OLD | NEW |