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

Unified Diff: remoting/client/opengl/BUILD.gn

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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: remoting/client/opengl/BUILD.gn
diff --git a/remoting/client/opengl/BUILD.gn b/remoting/client/opengl/BUILD.gn
index 0a9d785d605dbda4646c2dc4ebd379635cd332d7..237104ea712b7655e82fd93b1c0f583073586787 100644
--- a/remoting/client/opengl/BUILD.gn
+++ b/remoting/client/opengl/BUILD.gn
@@ -1,3 +1,5 @@
+import("//remoting/remoting_srcs.gni")
+
shaders = [
Sergey Ulanov 2016/06/27 23:15:29 This file needs a copyright header.
Yuwei 2016/06/28 22:51:11 Done.
"tex_coord_to_view.vert",
"draw_tex.frag",
@@ -12,3 +14,21 @@ action("inline_shaders") {
]
args = [ rebase_path(out_path) ] + rebase_path(shaders)
}
+
+source_set("opengl_renderer") {
+ sources = [
+ "//remoting/client/opengl/gl_canvas.cc",
+ "//remoting/client/opengl/gl_canvas.h",
+ "//remoting/client/opengl/gl_desktop.cc",
+ "//remoting/client/opengl/gl_desktop.h",
+ "//remoting/client/opengl/gl_helpers.cc",
+ "//remoting/client/opengl/gl_helpers.h",
+ "//remoting/client/opengl/gl_render_layer.cc",
+ "//remoting/client/opengl/gl_render_layer.h",
+ ]
+
+ deps = [
+ ":inline_shaders",
+ "//third_party/webrtc",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698