| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "gl_egl_api_implementation.cc", | 200 "gl_egl_api_implementation.cc", |
| 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 | |
| 211 if (is_android) { | |
| 212 deps += [ "//ui/android:ui_java" ] | |
| 213 } | |
| 214 } | 210 } |
| 215 | 211 |
| 216 source_set("gl_unittest_utils") { | 212 source_set("gl_unittest_utils") { |
| 217 testonly = true | 213 testonly = true |
| 218 sources = [ | 214 sources = [ |
| 219 "gl_bindings_autogen_mock.cc", | 215 "gl_bindings_autogen_mock.cc", |
| 220 "gl_bindings_autogen_mock.h", | 216 "gl_bindings_autogen_mock.h", |
| 221 "gl_mock.cc", | 217 "gl_mock.cc", |
| 222 "gl_mock.h", | 218 "gl_mock.h", |
| 223 "gl_mock_autogen_gl.h", | 219 "gl_mock_autogen_gl.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 241 deps = [ | 237 deps = [ |
| 242 ":surface_jni_headers", | 238 ":surface_jni_headers", |
| 243 ] | 239 ] |
| 244 sources = [ | 240 sources = [ |
| 245 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 241 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 246 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 242 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 247 ] | 243 ] |
| 248 jni_package = "ui/gl" | 244 jni_package = "ui/gl" |
| 249 } | 245 } |
| 250 } | 246 } |
| OLD | NEW |