| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "gl_context_stub_with_extensions.h", | 46 "gl_context_stub_with_extensions.h", |
| 47 "gl_context_win.cc", | 47 "gl_context_win.cc", |
| 48 "gl_enums.cc", | 48 "gl_enums.cc", |
| 49 "gl_enums.h", | 49 "gl_enums.h", |
| 50 "gl_enums_implementation_autogen.h", | 50 "gl_enums_implementation_autogen.h", |
| 51 "gl_export.h", | 51 "gl_export.h", |
| 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_noop.cc", |
| 57 "gl_fence_noop.h", |
| 56 "gl_fence_nv.cc", | 58 "gl_fence_nv.cc", |
| 57 "gl_fence_nv.h", | 59 "gl_fence_nv.h", |
| 58 "gl_gl_api_implementation.cc", | 60 "gl_gl_api_implementation.cc", |
| 59 "gl_gl_api_implementation.h", | 61 "gl_gl_api_implementation.h", |
| 60 "gl_helper.cc", | 62 "gl_helper.cc", |
| 61 "gl_helper.h", | 63 "gl_helper.h", |
| 62 "gl_image.h", | 64 "gl_image.h", |
| 63 "gl_image_memory.cc", | 65 "gl_image_memory.cc", |
| 64 "gl_image_memory.h", | 66 "gl_image_memory.h", |
| 65 "gl_image_ref_counted_memory.cc", | 67 "gl_image_ref_counted_memory.cc", |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 sources = [ | 385 sources = [ |
| 384 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 386 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 385 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 387 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 386 ] | 388 ] |
| 387 public_deps = [ | 389 public_deps = [ |
| 388 ":surface_jni_headers", | 390 ":surface_jni_headers", |
| 389 ] | 391 ] |
| 390 jni_package = "ui/gl" | 392 jni_package = "ui/gl" |
| 391 } | 393 } |
| 392 } | 394 } |
| OLD | NEW |