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

Unified Diff: remoting/client/BUILD.gn

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 5 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/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
index d549eee9e12645547d8f7a34c895501bae6f1b66..19b519a6f6d2ac36ac044755a7a94e1a82abecc8 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -41,6 +41,25 @@ source_set("client") {
}
}
+source_set("opengl_renderer") {
+ sources = [
+ "gl_canvas.cc",
+ "gl_canvas.h",
+ "gl_desktop.cc",
+ "gl_desktop.h",
+ "gl_helpers.cc",
+ "gl_helpers.h",
+ "gl_render_layer.cc",
+ "gl_render_layer.h",
+ ]
+
+ deps = [
+ "//third_party/webrtc",
+ ]
+
+ configs += [ "//third_party/khronos:khronos_headers" ]
+}
+
source_set("test_support") {
testonly = true

Powered by Google App Engine
This is Rietveld 408576698