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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "//testing/gtest", | 327 "//testing/gtest", |
| 328 "//ui/base", |
328 ] | 329 ] |
329 | 330 |
330 if (use_x11) { | 331 if (use_x11) { |
331 configs += [ "//build/config/linux:x11" ] | 332 configs += [ "//build/config/linux:x11" ] |
332 deps += [ "//ui/platform_window/x11" ] | 333 deps += [ "//ui/platform_window/x11" ] |
333 } | 334 } |
334 | 335 |
335 if (use_ozone) { | 336 if (use_ozone) { |
336 deps += [ "//ui/ozone" ] | 337 deps += [ "//ui/ozone" ] |
337 } | 338 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 sources = [ | 435 sources = [ |
435 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", | 436 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", |
436 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", | 437 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java
", |
437 ] | 438 ] |
438 public_deps = [ | 439 public_deps = [ |
439 ":surface_jni_headers", | 440 ":surface_jni_headers", |
440 ] | 441 ] |
441 jni_package = "ui/gl" | 442 jni_package = "ui/gl" |
442 } | 443 } |
443 } | 444 } |
OLD | NEW |