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

Unified Diff: remoting/client/BUILD.gn

Issue 2303883004: [Remoting Client] Disable OpenGL renderer on Windows (Closed)
Patch Set: Reviewer's Feedback Created 4 years, 3 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 | no next file » | no next file with comments »
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 22bf5af3d12265deafce20fb87bc05b87ceeb81d..15e10ad0b3961323cc7a1696edd13760b83226cc 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -147,7 +147,6 @@ source_set("unit_tests") {
"client_telemetry_logger_unittest.cc",
"dual_buffer_frame_consumer_unittest.cc",
"empty_cursor_filter_unittest.cc",
- "gl_renderer_unittest.cc",
"key_event_mapper_unittest.cc",
"normalizing_input_filter_cros_unittest.cc",
"normalizing_input_filter_mac_unittest.cc",
@@ -166,11 +165,17 @@ source_set("unit_tests") {
deps = [
":client",
- ":opengl_renderer",
":test_support",
"//remoting/proto",
"//testing/gmock",
"//testing/gtest",
"//third_party/webrtc",
]
+
+ if (!is_win) {
+ # Windows clang builder fails to link the test binary with ANGLE GLESv2.
+ # crbug.com/642027
+ sources += [ "gl_renderer_unittest.cc" ]
+ deps += [ ":opengl_renderer" ]
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698