Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: ui/gl/BUILD.gn

Issue 1419623008: ui: Use single buffer SurfaceTexture mode for native GpuMemoryBuffers on Android. Base URL: https://chromium.googlesource.com/chromium/src.git@1419733005
Patch Set: libs = [] Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gl/BUILD.gn
diff --git a/ui/gl/BUILD.gn b/ui/gl/BUILD.gn
index dda16eec02dca32bc6585c8ee5f83ce01c3cdb31..67b4f5c2ea22d046b9a2454368a46077efdf5c75 100644
--- a/ui/gl/BUILD.gn
+++ b/ui/gl/BUILD.gn
@@ -356,6 +356,10 @@ test("gl_unittests") {
sources += [ "gl_image_io_surface_unittest.cc" ]
}
+ if (is_android) {
+ sources += [ "gl_image_surface_texture_unittest.cc" ]
+ }
+
include_dirs = [ "//third_party/khronos" ]
deps = [
@@ -377,6 +381,12 @@ test("gl_unittests") {
if (use_ozone) {
deps += [ "//ui/ozone" ]
}
+
+ libs = []
+
+ if (is_android) {
+ libs += [ "android" ]
+ }
}
if (is_android) {
« no previous file with comments | « ui/android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ('k') | ui/gl/android/surface_texture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698