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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "gl_context_win.cc", | 50 "gl_context_win.cc", |
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_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_image.cc", | |
61 "gl_image.h", | 60 "gl_image.h", |
62 "gl_image_memory.cc", | 61 "gl_image_memory.cc", |
63 "gl_image_memory.h", | 62 "gl_image_memory.h", |
64 "gl_image_ref_counted_memory.cc", | 63 "gl_image_ref_counted_memory.cc", |
65 "gl_image_ref_counted_memory.h", | 64 "gl_image_ref_counted_memory.h", |
66 "gl_image_shared_memory.cc", | 65 "gl_image_shared_memory.cc", |
67 "gl_image_shared_memory.h", | 66 "gl_image_shared_memory.h", |
68 "gl_image_stub.cc", | 67 "gl_image_stub.cc", |
69 "gl_image_stub.h", | 68 "gl_image_stub.h", |
70 "gl_implementation.cc", | 69 "gl_implementation.cc", |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 | 338 |
340 generate_jni("gl_jni_headers") { | 339 generate_jni("gl_jni_headers") { |
341 deps = [ ":surface_jni_headers" ] | 340 deps = [ ":surface_jni_headers" ] |
342 sources = [ | 341 sources = [ |
343 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 342 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
344 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 343 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
345 ] | 344 ] |
346 jni_package = "ui/gl" | 345 jni_package = "ui/gl" |
347 } | 346 } |
348 } | 347 } |
OLD | NEW |