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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 "gl_egl_api_implementation.h", | 201 "gl_egl_api_implementation.h", |
202 "gl_implementation_ozone.cc", | 202 "gl_implementation_ozone.cc", |
203 "gl_surface_ozone.cc", | 203 "gl_surface_ozone.cc", |
204 ] | 204 ] |
205 deps += [ | 205 deps += [ |
206 "//ui/ozone", | 206 "//ui/ozone", |
207 "//ui/ozone:ozone_base", | 207 "//ui/ozone:ozone_base", |
208 ] | 208 ] |
209 } | 209 } |
210 | 210 |
211 if (is_android && !is_android_webview_build) { | 211 if (is_android) { |
212 deps += [ "//ui/android:ui_java" ] | 212 deps += [ "//ui/android:ui_java" ] |
213 } | 213 } |
214 } | 214 } |
215 | 215 |
216 source_set("gl_unittest_utils") { | 216 source_set("gl_unittest_utils") { |
217 testonly = true | 217 testonly = true |
218 sources = [ | 218 sources = [ |
219 "gl_bindings_autogen_mock.cc", | 219 "gl_bindings_autogen_mock.cc", |
220 "gl_bindings_autogen_mock.h", | 220 "gl_bindings_autogen_mock.h", |
221 "gl_mock.cc", | 221 "gl_mock.cc", |
(...skipping 19 matching lines...) Expand all Loading... |
241 deps = [ | 241 deps = [ |
242 ":surface_jni_headers", | 242 ":surface_jni_headers", |
243 ] | 243 ] |
244 sources = [ | 244 sources = [ |
245 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 245 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
246 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 246 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
247 ] | 247 ] |
248 jni_package = "ui/gl" | 248 jni_package = "ui/gl" |
249 } | 249 } |
250 } | 250 } |
OLD | NEW |