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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("client") { 5 static_library("client") {
6 # Disabled the source filters because there are _mac files that need to 6 # Disabled the source filters because there are _mac files that need to
7 # be compiled on all platforms. 7 # be compiled on all platforms.
8 set_sources_assignment_filter([]) 8 set_sources_assignment_filter([])
9 9
10 sources = [ 10 sources = [
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 # be compiled on all platforms. 140 # be compiled on all platforms.
141 set_sources_assignment_filter([]) 141 set_sources_assignment_filter([])
142 sources = [ 142 sources = [
143 "audio_decode_scheduler_unittest.cc", 143 "audio_decode_scheduler_unittest.cc",
144 "audio_player_unittest.cc", 144 "audio_player_unittest.cc",
145 "chromoting_client_runtime_unittest.cc", 145 "chromoting_client_runtime_unittest.cc",
146 "client_status_logger_unittest.cc", 146 "client_status_logger_unittest.cc",
147 "client_telemetry_logger_unittest.cc", 147 "client_telemetry_logger_unittest.cc",
148 "dual_buffer_frame_consumer_unittest.cc", 148 "dual_buffer_frame_consumer_unittest.cc",
149 "empty_cursor_filter_unittest.cc", 149 "empty_cursor_filter_unittest.cc",
150 "gl_renderer_unittest.cc",
151 "key_event_mapper_unittest.cc", 150 "key_event_mapper_unittest.cc",
152 "normalizing_input_filter_cros_unittest.cc", 151 "normalizing_input_filter_cros_unittest.cc",
153 "normalizing_input_filter_mac_unittest.cc", 152 "normalizing_input_filter_mac_unittest.cc",
154 "normalizing_input_filter_win_unittest.cc", 153 "normalizing_input_filter_win_unittest.cc",
155 "queued_task_poster_unittest.cc", 154 "queued_task_poster_unittest.cc",
156 "server_log_entry_client_unittest.cc", 155 "server_log_entry_client_unittest.cc",
157 "software_video_renderer_unittest.cc", 156 "software_video_renderer_unittest.cc",
158 "touch_input_scaler_unittest.cc", 157 "touch_input_scaler_unittest.cc",
159 ] 158 ]
160 set_sources_assignment_filter(sources_assignment_filter) 159 set_sources_assignment_filter(sources_assignment_filter)
161 160
162 configs += [ 161 configs += [
163 "//remoting:version", 162 "//remoting:version",
164 "//remoting:enable_webrtc_remoting_client", 163 "//remoting:enable_webrtc_remoting_client",
165 ] 164 ]
166 165
167 deps = [ 166 deps = [
168 ":client", 167 ":client",
169 ":opengl_renderer",
170 ":test_support", 168 ":test_support",
171 "//remoting/proto", 169 "//remoting/proto",
172 "//testing/gmock", 170 "//testing/gmock",
173 "//testing/gtest", 171 "//testing/gtest",
174 "//third_party/webrtc", 172 "//third_party/webrtc",
175 ] 173 ]
174
175 if (!is_win) {
176 # Windows clang builder fails to link the test binary with ANGLE GLESv2.
177 # crbug.com/642027
178 sources += [ "gl_renderer_unittest.cc" ]
179 deps += [ ":opengl_renderer" ]
180 }
176 } 181 }
OLDNEW
« 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