| 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 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "gl_fence.cc", | 52 "gl_fence.cc", |
| 53 "gl_fence.h", | 53 "gl_fence.h", |
| 54 "gl_fence_arb.cc", | 54 "gl_fence_arb.cc", |
| 55 "gl_fence_arb.h", | 55 "gl_fence_arb.h", |
| 56 "gl_fence_nv.cc", | 56 "gl_fence_nv.cc", |
| 57 "gl_fence_nv.h", | 57 "gl_fence_nv.h", |
| 58 "gl_gl_api_implementation.cc", | 58 "gl_gl_api_implementation.cc", |
| 59 "gl_gl_api_implementation.h", | 59 "gl_gl_api_implementation.h", |
| 60 "gl_helper.cc", | 60 "gl_helper.cc", |
| 61 "gl_helper.h", | 61 "gl_helper.h", |
| 62 "gl_image.cc", |
| 62 "gl_image.h", | 63 "gl_image.h", |
| 63 "gl_image_memory.cc", | 64 "gl_image_memory.cc", |
| 64 "gl_image_memory.h", | 65 "gl_image_memory.h", |
| 65 "gl_image_ref_counted_memory.cc", | 66 "gl_image_ref_counted_memory.cc", |
| 66 "gl_image_ref_counted_memory.h", | 67 "gl_image_ref_counted_memory.h", |
| 67 "gl_image_shared_memory.cc", | 68 "gl_image_shared_memory.cc", |
| 68 "gl_image_shared_memory.h", | 69 "gl_image_shared_memory.h", |
| 69 "gl_image_stub.cc", | 70 "gl_image_stub.cc", |
| 70 "gl_image_stub.h", | 71 "gl_image_stub.h", |
| 71 "gl_implementation.cc", | 72 "gl_implementation.cc", |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 sources = [ | 384 sources = [ |
| 384 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 385 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 385 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 386 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 386 ] | 387 ] |
| 387 public_deps = [ | 388 public_deps = [ |
| 388 ":surface_jni_headers", | 389 ":surface_jni_headers", |
| 389 ] | 390 ] |
| 390 jni_package = "ui/gl" | 391 jni_package = "ui/gl" |
| 391 } | 392 } |
| 392 } | 393 } |
| OLD | NEW |