| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "gl_surface_osmesa.h", | 85 "gl_surface_osmesa.h", |
| 86 "gl_surface_stub.cc", | 86 "gl_surface_stub.cc", |
| 87 "gl_surface_stub.h", | 87 "gl_surface_stub.h", |
| 88 "gl_surface_win.cc", | 88 "gl_surface_win.cc", |
| 89 "gl_switches.cc", | 89 "gl_switches.cc", |
| 90 "gl_switches.h", | 90 "gl_switches.h", |
| 91 "gl_version_info.cc", | 91 "gl_version_info.cc", |
| 92 "gl_version_info.h", | 92 "gl_version_info.h", |
| 93 "gpu_switching_manager.cc", | 93 "gpu_switching_manager.cc", |
| 94 "gpu_switching_manager.h", | 94 "gpu_switching_manager.h", |
| 95 "gpu_timing.cc", |
| 96 "gpu_timing.h", |
| 95 "scoped_binders.cc", | 97 "scoped_binders.cc", |
| 96 "scoped_binders.h", | 98 "scoped_binders.h", |
| 97 "scoped_make_current.cc", | 99 "scoped_make_current.cc", |
| 98 "scoped_make_current.h", | 100 "scoped_make_current.h", |
| 99 "sync_control_vsync_provider.cc", | 101 "sync_control_vsync_provider.cc", |
| 100 "sync_control_vsync_provider.h", | 102 "sync_control_vsync_provider.h", |
| 101 ] | 103 ] |
| 102 | 104 |
| 103 defines = [ "GL_IMPLEMENTATION" ] | 105 defines = [ "GL_IMPLEMENTATION" ] |
| 104 | 106 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 deps = [ | 279 deps = [ |
| 278 ":surface_jni_headers", | 280 ":surface_jni_headers", |
| 279 ] | 281 ] |
| 280 sources = [ | 282 sources = [ |
| 281 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 283 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 282 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 284 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 283 ] | 285 ] |
| 284 jni_package = "ui/gl" | 286 jni_package = "ui/gl" |
| 285 } | 287 } |
| 286 } | 288 } |
| OLD | NEW |