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

Unified Diff: remoting/client/BUILD.gn

Issue 2196493002: [Chromoting] Unit Tests for GlRenderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make RequestRender private and declare the test as friend Created 4 years, 4 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
« no previous file with comments | « no previous file | remoting/client/gl_cursor.h » ('j') | remoting/client/gl_desktop.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
index 5bae90e951bae4e779bf662cbb15aef082c67234..834eedf0d2783345efe8256ce4c885e55d1a1efc 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -41,7 +41,7 @@ static_library("client") {
}
}
-if (is_android || is_ios) {
+if (is_android || is_ios || is_linux) {
source_set("opengl_renderer") {
sources =
rebase_path(remoting_srcs_gypi_values.remoting_opengl_renderer_sources,
@@ -110,4 +110,10 @@ source_set("unit_tests") {
"//testing/gtest",
"//third_party/webrtc",
]
+
+ if (is_linux) {
+ sources += [ "gl_renderer_unittest.cc" ]
+ deps += [ ":opengl_renderer" ]
+ libs = [ "GL" ]
+ }
}
« no previous file with comments | « no previous file | remoting/client/gl_cursor.h » ('j') | remoting/client/gl_desktop.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698