Chromium Code Reviews| 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/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 use_egl = is_win || is_android || is_linux | 9 use_egl = is_win || is_android || is_linux |
| 10 use_glx = use_x11 | 10 use_glx = use_x11 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 "gl_surface_osmesa_win.cc", | 210 "gl_surface_osmesa_win.cc", |
| 211 "gl_surface_osmesa_win.h", | 211 "gl_surface_osmesa_win.h", |
| 212 "gl_surface_wgl.cc", | 212 "gl_surface_wgl.cc", |
| 213 "gl_surface_wgl.h", | 213 "gl_surface_wgl.h", |
| 214 "gl_wgl_api_implementation.cc", | 214 "gl_wgl_api_implementation.cc", |
| 215 "gl_wgl_api_implementation.h", | 215 "gl_wgl_api_implementation.h", |
| 216 "vsync_provider_win.cc", | 216 "vsync_provider_win.cc", |
| 217 "vsync_provider_win.h", | 217 "vsync_provider_win.h", |
| 218 ] | 218 ] |
| 219 | 219 |
| 220 include_dirs = [ "//third_party/swiftshader/include" ] | |
|
piman
2016/08/29 23:07:09
This seems unrelated. Doing this caused some issue
| |
| 220 libs = [ "dwmapi.lib" ] | 221 libs = [ "dwmapi.lib" ] |
| 221 ldflags = [ "/DELAYLOAD:dwmapi.dll" ] | 222 ldflags = [ "/DELAYLOAD:dwmapi.dll" ] |
| 222 | 223 |
| 223 data_deps = [ | 224 data_deps = [ |
| 224 "//third_party/angle:libEGL", | 225 "//third_party/angle:libEGL", |
| 225 "//third_party/angle:libGLESv2", | 226 "//third_party/angle:libGLESv2", |
| 226 "//third_party/mesa:osmesa", | 227 "//third_party/mesa:osmesa", |
| 227 ] | 228 ] |
| 228 } | 229 } |
| 229 if (is_mac) { | 230 if (is_mac) { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 392 sources = [ | 393 sources = [ |
| 393 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 394 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 394 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", | 395 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", |
| 395 ] | 396 ] |
| 396 public_deps = [ | 397 public_deps = [ |
| 397 ":surface_jni_headers", | 398 ":surface_jni_headers", |
| 398 ] | 399 ] |
| 399 jni_package = "ui/gl" | 400 jni_package = "ui/gl" |
| 400 } | 401 } |
| 401 } | 402 } |
| OLD | NEW |