| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/linux/pkg_config.gni") | 7 import("//build/config/linux/pkg_config.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| 11 declare_args() { | 11 declare_args() { |
| 12 enable_swiftshader = false | 12 enable_swiftshader = is_chrome_branded && is_win |
| 13 } | 13 } |
| 14 | 14 |
| 15 use_egl = is_win || is_android || is_linux | 15 use_egl = is_win || is_android || is_linux |
| 16 use_glx = use_x11 | 16 use_glx = use_x11 |
| 17 | 17 |
| 18 if (is_android) { | 18 if (is_android) { |
| 19 import("//build/config/android/config.gni") | 19 import("//build/config/android/config.gni") |
| 20 import("//build/config/android/rules.gni") | 20 import("//build/config/android/rules.gni") |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 sources = [ | 403 sources = [ |
| 404 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 404 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 405 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 405 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 406 ] | 406 ] |
| 407 public_deps = [ | 407 public_deps = [ |
| 408 ":surface_jni_headers", | 408 ":surface_jni_headers", |
| 409 ] | 409 ] |
| 410 jni_package = "ui/gl" | 410 jni_package = "ui/gl" |
| 411 } | 411 } |
| 412 } | 412 } |
| OLD | NEW |