| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 deps += [ | 243 deps += [ |
| 244 ":gl_jni_headers", | 244 ":gl_jni_headers", |
| 245 "//ui/android:ui_java", | 245 "//ui/android:ui_java", |
| 246 ] | 246 ] |
| 247 } | 247 } |
| 248 if (use_ozone) { | 248 if (use_ozone) { |
| 249 sources += [ | 249 sources += [ |
| 250 "gl_context_ozone.cc", | 250 "gl_context_ozone.cc", |
| 251 "gl_egl_api_implementation.cc", | 251 "gl_egl_api_implementation.cc", |
| 252 "gl_egl_api_implementation.h", | 252 "gl_egl_api_implementation.h", |
| 253 "gl_image_ozone_native_pixmap.cc", |
| 254 "gl_image_ozone_native_pixmap.h", |
| 253 "gl_implementation_ozone.cc", | 255 "gl_implementation_ozone.cc", |
| 254 "gl_surface_ozone.cc", | 256 "gl_surface_ozone.cc", |
| 255 ] | 257 ] |
| 256 deps += [ | 258 deps += [ |
| 257 "//ui/ozone", | 259 "//ui/ozone", |
| 258 "//ui/ozone:ozone_base", | 260 "//ui/ozone:ozone_base", |
| 259 ] | 261 ] |
| 260 } | 262 } |
| 261 } | 263 } |
| 262 | 264 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 deps = [ | 349 deps = [ |
| 348 ":surface_jni_headers", | 350 ":surface_jni_headers", |
| 349 ] | 351 ] |
| 350 sources = [ | 352 sources = [ |
| 351 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 353 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 352 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 354 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 353 ] | 355 ] |
| 354 jni_package = "ui/gl" | 356 jni_package = "ui/gl" |
| 355 } | 357 } |
| 356 } | 358 } |
| OLD | NEW |