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/rules.gni") | 7 import("//build/config/android/rules.gni") |
8 } | 8 } |
9 | 9 |
10 gl_binding_output_dir = target_gen_dir | 10 gl_binding_output_dir = target_gen_dir |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "gl_surface_stub.h", | 80 "gl_surface_stub.h", |
81 "gl_surface_win.cc", | 81 "gl_surface_win.cc", |
82 "gl_surface_osmesa.cc", | 82 "gl_surface_osmesa.cc", |
83 "gl_surface_osmesa.h", | 83 "gl_surface_osmesa.h", |
84 "gl_switches.cc", | 84 "gl_switches.cc", |
85 "gl_switches.h", | 85 "gl_switches.h", |
86 "gl_version_info.cc", | 86 "gl_version_info.cc", |
87 "gl_version_info.h", | 87 "gl_version_info.h", |
88 "gpu_switching_manager.cc", | 88 "gpu_switching_manager.cc", |
89 "gpu_switching_manager.h", | 89 "gpu_switching_manager.h", |
90 "io_surface_support_mac.cc", | |
91 "io_surface_support_mac.h", | |
92 "scoped_binders.cc", | 90 "scoped_binders.cc", |
93 "scoped_binders.h", | 91 "scoped_binders.h", |
94 "scoped_make_current.cc", | 92 "scoped_make_current.cc", |
95 "scoped_make_current.h", | 93 "scoped_make_current.h", |
96 "sync_control_vsync_provider.cc", | 94 "sync_control_vsync_provider.cc", |
97 "sync_control_vsync_provider.h", | 95 "sync_control_vsync_provider.h", |
98 "$gl_binding_output_dir/gl_bindings_autogen_gl.cc", | 96 "$gl_binding_output_dir/gl_bindings_autogen_gl.cc", |
99 "$gl_binding_output_dir/gl_bindings_autogen_gl.h", | 97 "$gl_binding_output_dir/gl_bindings_autogen_gl.h", |
100 "$gl_binding_output_dir/gl_bindings_autogen_osmesa.cc", | 98 "$gl_binding_output_dir/gl_bindings_autogen_osmesa.cc", |
101 "$gl_binding_output_dir/gl_bindings_autogen_osmesa.h", | 99 "$gl_binding_output_dir/gl_bindings_autogen_osmesa.h", |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 | 321 |
324 if (is_android) { | 322 if (is_android) { |
325 generate_jni("gl_jni_headers") { | 323 generate_jni("gl_jni_headers") { |
326 sources = [ | 324 sources = [ |
327 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 325 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
328 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 326 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
329 ] | 327 ] |
330 jni_package = "ui/gl" | 328 jni_package = "ui/gl" |
331 } | 329 } |
332 } | 330 } |
OLD | NEW |