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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "gl_surface_mac.cc", | 87 "gl_surface_mac.cc", |
88 "gl_surface_osmesa.cc", | 88 "gl_surface_osmesa.cc", |
89 "gl_surface_osmesa.h", | 89 "gl_surface_osmesa.h", |
90 "gl_surface_overlay.cc", | 90 "gl_surface_overlay.cc", |
91 "gl_surface_overlay.h", | 91 "gl_surface_overlay.h", |
92 "gl_surface_stub.cc", | 92 "gl_surface_stub.cc", |
93 "gl_surface_stub.h", | 93 "gl_surface_stub.h", |
94 "gl_surface_win.cc", | 94 "gl_surface_win.cc", |
95 "gl_switches.cc", | 95 "gl_switches.cc", |
96 "gl_switches.h", | 96 "gl_switches.h", |
| 97 "gl_utils.cc", |
| 98 "gl_utils.h", |
97 "gl_version_info.cc", | 99 "gl_version_info.cc", |
98 "gl_version_info.h", | 100 "gl_version_info.h", |
99 "gpu_switching_manager.cc", | 101 "gpu_switching_manager.cc", |
100 "gpu_switching_manager.h", | 102 "gpu_switching_manager.h", |
101 "gpu_timing.cc", | 103 "gpu_timing.cc", |
102 "gpu_timing.h", | 104 "gpu_timing.h", |
103 "scoped_api.cc", | 105 "scoped_api.cc", |
104 "scoped_api.h", | 106 "scoped_api.h", |
105 "scoped_binders.cc", | 107 "scoped_binders.cc", |
106 "scoped_binders.h", | 108 "scoped_binders.h", |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 sources = [ | 394 sources = [ |
393 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 395 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
394 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 396 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
395 ] | 397 ] |
396 public_deps = [ | 398 public_deps = [ |
397 ":surface_jni_headers", | 399 ":surface_jni_headers", |
398 ] | 400 ] |
399 jni_package = "ui/gl" | 401 jni_package = "ui/gl" |
400 } | 402 } |
401 } | 403 } |
OLD | NEW |