| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "gl_surface_glx.h", | 174 "gl_surface_glx.h", |
| 175 "gl_surface_x11.cc", | 175 "gl_surface_x11.cc", |
| 176 ] | 176 ] |
| 177 | 177 |
| 178 configs += [ | 178 configs += [ |
| 179 "//build/config/linux:x11", | 179 "//build/config/linux:x11", |
| 180 "//build/config/linux:xcomposite", | 180 "//build/config/linux:xcomposite", |
| 181 "//build/config/linux:xext", | 181 "//build/config/linux:xext", |
| 182 ] | 182 ] |
| 183 | 183 |
| 184 deps += [ "//ui/gfx/x" ] | 184 deps += [ |
| 185 "//ui/gfx/x", |
| 186 "//ui/platform_window/x11", |
| 187 ] |
| 185 } | 188 } |
| 186 if (is_win) { | 189 if (is_win) { |
| 187 sources += [ | 190 sources += [ |
| 188 "angle_platform_impl.cc", | 191 "angle_platform_impl.cc", |
| 189 "angle_platform_impl.h", | 192 "angle_platform_impl.h", |
| 190 "gl_bindings_autogen_wgl.cc", | 193 "gl_bindings_autogen_wgl.cc", |
| 191 "gl_bindings_autogen_wgl.h", | 194 "gl_bindings_autogen_wgl.h", |
| 192 "gl_context_wgl.cc", | 195 "gl_context_wgl.cc", |
| 193 "gl_context_wgl.h", | 196 "gl_context_wgl.h", |
| 194 "gl_egl_api_implementation.cc", | 197 "gl_egl_api_implementation.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 deps = [ | 319 deps = [ |
| 317 ":surface_jni_headers", | 320 ":surface_jni_headers", |
| 318 ] | 321 ] |
| 319 sources = [ | 322 sources = [ |
| 320 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 323 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 321 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 324 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 322 ] | 325 ] |
| 323 jni_package = "ui/gl" | 326 jni_package = "ui/gl" |
| 324 } | 327 } |
| 325 } | 328 } |
| OLD | NEW |