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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "gl_enums.cc", | 70 "gl_enums.cc", |
71 "gl_enums.h", | 71 "gl_enums.h", |
72 "gl_enums_implementation_autogen.h", | 72 "gl_enums_implementation_autogen.h", |
73 "gl_export.h", | 73 "gl_export.h", |
74 "gl_fence.cc", | 74 "gl_fence.cc", |
75 "gl_fence.h", | 75 "gl_fence.h", |
76 "gl_fence_arb.cc", | 76 "gl_fence_arb.cc", |
77 "gl_fence_arb.h", | 77 "gl_fence_arb.h", |
78 "gl_fence_nv.cc", | 78 "gl_fence_nv.cc", |
79 "gl_fence_nv.h", | 79 "gl_fence_nv.h", |
| 80 "gl_fence_shared_event.cc", |
| 81 "gl_fence_shared_event.h", |
80 "gl_gl_api_implementation.cc", | 82 "gl_gl_api_implementation.cc", |
81 "gl_gl_api_implementation.h", | 83 "gl_gl_api_implementation.h", |
82 "gl_helper.cc", | 84 "gl_helper.cc", |
83 "gl_helper.h", | 85 "gl_helper.h", |
84 "gl_image.cc", | 86 "gl_image.cc", |
85 "gl_image.h", | 87 "gl_image.h", |
86 "gl_image_memory.cc", | 88 "gl_image_memory.cc", |
87 "gl_image_memory.h", | 89 "gl_image_memory.h", |
88 "gl_image_ref_counted_memory.cc", | 90 "gl_image_ref_counted_memory.cc", |
89 "gl_image_ref_counted_memory.h", | 91 "gl_image_ref_counted_memory.h", |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 sources = [ | 416 sources = [ |
415 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 417 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
416 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 418 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
417 ] | 419 ] |
418 public_deps = [ | 420 public_deps = [ |
419 ":surface_jni_headers", | 421 ":surface_jni_headers", |
420 ] | 422 ] |
421 jni_package = "ui/gl" | 423 jni_package = "ui/gl" |
422 } | 424 } |
423 } | 425 } |
OLD | NEW |