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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 configs += [ | 176 configs += [ |
177 "//build/config/linux:x11", | 177 "//build/config/linux:x11", |
178 "//build/config/linux:xcomposite", | 178 "//build/config/linux:xcomposite", |
179 "//build/config/linux:xext", | 179 "//build/config/linux:xext", |
180 ] | 180 ] |
181 | 181 |
182 deps += [ "//ui/gfx/x" ] | 182 deps += [ "//ui/gfx/x" ] |
183 } | 183 } |
184 if (is_win) { | 184 if (is_win) { |
185 sources += [ | 185 sources += [ |
| 186 "angle_platform_impl.cc", |
| 187 "angle_platform_impl.h", |
186 "gl_bindings_autogen_wgl.cc", | 188 "gl_bindings_autogen_wgl.cc", |
187 "gl_bindings_autogen_wgl.h", | 189 "gl_bindings_autogen_wgl.h", |
188 "gl_context_wgl.cc", | 190 "gl_context_wgl.cc", |
189 "gl_context_wgl.h", | 191 "gl_context_wgl.h", |
190 "gl_egl_api_implementation.cc", | 192 "gl_egl_api_implementation.cc", |
191 "gl_egl_api_implementation.h", | 193 "gl_egl_api_implementation.h", |
192 "gl_surface_wgl.cc", | 194 "gl_surface_wgl.cc", |
193 "gl_surface_wgl.h", | 195 "gl_surface_wgl.h", |
194 "gl_wgl_api_implementation.cc", | 196 "gl_wgl_api_implementation.cc", |
195 "gl_wgl_api_implementation.h", | 197 "gl_wgl_api_implementation.h", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 deps = [ | 281 deps = [ |
280 ":surface_jni_headers", | 282 ":surface_jni_headers", |
281 ] | 283 ] |
282 sources = [ | 284 sources = [ |
283 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 285 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
284 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 286 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
285 ] | 287 ] |
286 jni_package = "ui/gl" | 288 jni_package = "ui/gl" |
287 } | 289 } |
288 } | 290 } |
OLD | NEW |