| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 if (is_mac) { | 222 if (is_mac) { |
| 223 sources += [ | 223 sources += [ |
| 224 "gl_context_cgl.cc", | 224 "gl_context_cgl.cc", |
| 225 "gl_context_cgl.h", | 225 "gl_context_cgl.h", |
| 226 "gl_fence_apple.cc", | 226 "gl_fence_apple.cc", |
| 227 "gl_fence_apple.h", | 227 "gl_fence_apple.h", |
| 228 "gl_image_io_surface.h", | 228 "gl_image_io_surface.h", |
| 229 "gl_image_io_surface.mm", | 229 "gl_image_io_surface.mm", |
| 230 "scoped_cgl.cc", | 230 "scoped_cgl.cc", |
| 231 "scoped_cgl.h", | 231 "scoped_cgl.h", |
| 232 "yuv_to_rgb_converter.cc", |
| 233 "yuv_to_rgb_converter.h", |
| 232 ] | 234 ] |
| 233 | 235 |
| 234 libs = [ | 236 libs = [ |
| 235 "IOSurface.framework", | 237 "IOSurface.framework", |
| 236 "OpenGL.framework", | 238 "OpenGL.framework", |
| 237 "Quartz.framework", | 239 "Quartz.framework", |
| 238 ] | 240 ] |
| 239 } | 241 } |
| 240 if (is_android) { | 242 if (is_android) { |
| 241 sources += [ | 243 sources += [ |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 sources = [ | 385 sources = [ |
| 384 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 386 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 385 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 387 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 386 ] | 388 ] |
| 387 public_deps = [ | 389 public_deps = [ |
| 388 ":surface_jni_headers", | 390 ":surface_jni_headers", |
| 389 ] | 391 ] |
| 390 jni_package = "ui/gl" | 392 jni_package = "ui/gl" |
| 391 } | 393 } |
| 392 } | 394 } |
| OLD | NEW |