| 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("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 "test/gl_test_helper.h", | 317 "test/gl_test_helper.h", |
| 318 ] | 318 ] |
| 319 | 319 |
| 320 configs += [ "//third_party/khronos:khronos_headers" ] | 320 configs += [ "//third_party/khronos:khronos_headers" ] |
| 321 | 321 |
| 322 public_deps = [ | 322 public_deps = [ |
| 323 ":gl", | 323 ":gl", |
| 324 "//ui/gl/init", | 324 "//ui/gl/init", |
| 325 ] | 325 ] |
| 326 deps = [ | 326 deps = [ |
| 327 "//base/test:test_support", |
| 327 "//testing/gtest", | 328 "//testing/gtest", |
| 328 "//ui/base", | 329 "//ui/base", |
| 329 ] | 330 ] |
| 330 | 331 |
| 331 if (use_x11) { | 332 if (use_x11) { |
| 332 configs += [ "//build/config/linux:x11" ] | 333 configs += [ "//build/config/linux:x11" ] |
| 333 deps += [ "//ui/platform_window/x11" ] | 334 deps += [ "//ui/platform_window/x11" ] |
| 334 } | 335 } |
| 335 | 336 |
| 336 if (use_ozone) { | 337 if (use_ozone) { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 sources = [ | 436 sources = [ |
| 436 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 437 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
| 437 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 438 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
| 438 ] | 439 ] |
| 439 public_deps = [ | 440 public_deps = [ |
| 440 ":surface_jni_headers", | 441 ":surface_jni_headers", |
| 441 ] | 442 ] |
| 442 jni_package = "ui/gl" | 443 jni_package = "ui/gl" |
| 443 } | 444 } |
| 444 } | 445 } |
| OLD | NEW |