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

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: Inlines Shaders & Fixes build files 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..186a612c653e8b2c015c67d9eac18aad6fef5c20 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -41,6 +41,25 @@ source_set("client") {
}
}
+source_set("opengl_renderer") {
Yuwei 2016/07/09 01:21:24 BTW is there a way to stop non-android trybots fro
+ sources = [
+ "//remoting/client/gl_canvas.cc",
Sergey Ulanov 2016/07/09 01:01:20 Don't need full paths here.
Yuwei 2016/07/11 22:38:23 Done.
+ "//remoting/client/gl_canvas.h",
+ "//remoting/client/gl_desktop.cc",
+ "//remoting/client/gl_desktop.h",
+ "//remoting/client/gl_helpers.cc",
+ "//remoting/client/gl_helpers.h",
+ "//remoting/client/gl_render_layer.cc",
+ "//remoting/client/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