| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 124 |
| 125 public_configs = [ "//third_party/khronos:khronos_headers" ] | 125 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| 126 | 126 |
| 127 deps = [ | 127 deps = [ |
| 128 "//base/third_party/dynamic_annotations", | 128 "//base/third_party/dynamic_annotations", |
| 129 "//skia", | 129 "//skia", |
| 130 ] | 130 ] |
| 131 public_deps = [ | 131 public_deps = [ |
| 132 "//base", | 132 "//base", |
| 133 "//third_party/mesa:mesa_headers", | 133 "//third_party/mesa:mesa_headers", |
| 134 "//ui/base/", |
| 134 "//ui/events/platform", | 135 "//ui/events/platform", |
| 135 "//ui/gfx", | 136 "//ui/gfx", |
| 136 "//ui/gfx/geometry", | 137 "//ui/gfx/geometry", |
| 137 ] | 138 ] |
| 138 | 139 |
| 139 if (is_win || is_android || is_linux) { | 140 if (is_win || is_android || is_linux) { |
| 140 sources += [ | 141 sources += [ |
| 141 "egl_util.cc", | 142 "egl_util.cc", |
| 142 "egl_util.h", | 143 "egl_util.h", |
| 143 "gl_bindings_autogen_egl.cc", | 144 "gl_bindings_autogen_egl.cc", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 sources = [ | 395 sources = [ |
| 395 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 396 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 396 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 397 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 397 ] | 398 ] |
| 398 public_deps = [ | 399 public_deps = [ |
| 399 ":surface_jni_headers", | 400 ":surface_jni_headers", |
| 400 ] | 401 ] |
| 401 jni_package = "ui/gl" | 402 jni_package = "ui/gl" |
| 402 } | 403 } |
| 403 } | 404 } |
| OLD | NEW |