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

Side by Side Diff: remoting/remoting_host_srcs.gypi

Issue 965633002: Add remoting and PPAPI tests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge fix Created 5 years, 9 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 | « remoting/remoting_host.gypi ('k') | remoting/remoting_nacl.gyp » ('j') | 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 { 5 {
6 'variables': { 6 'variables': {
7 'remoting_host_sources': [ 7 'remoting_host_sources': [
8 'host/audio_capturer.cc', 8 'host/audio_capturer.cc',
9 'host/audio_capturer.h', 9 'host/audio_capturer.h',
10 'host/audio_capturer_linux.cc', 10 'host/audio_capturer_linux.cc',
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'host/win/session_desktop_environment.cc', 252 'host/win/session_desktop_environment.cc',
253 'host/win/session_desktop_environment.h', 253 'host/win/session_desktop_environment.h',
254 'host/win/session_input_injector.cc', 254 'host/win/session_input_injector.cc',
255 'host/win/session_input_injector.h', 255 'host/win/session_input_injector.h',
256 'host/win/window_station_and_desktop.cc', 256 'host/win/window_station_and_desktop.cc',
257 'host/win/window_station_and_desktop.h', 257 'host/win/window_station_and_desktop.h',
258 'host/win/wts_terminal_monitor.cc', 258 'host/win/wts_terminal_monitor.cc',
259 'host/win/wts_terminal_monitor.h', 259 'host/win/wts_terminal_monitor.h',
260 'host/win/wts_terminal_observer.h', 260 'host/win/wts_terminal_observer.h',
261 ], 261 ],
262 'remoting_cast_sources' : [ 262 'remoting_host_setup_sources': [
263 'host/setup/daemon_controller.cc',
264 'host/setup/daemon_controller.h',
265 'host/setup/daemon_controller_delegate_linux.cc',
266 'host/setup/daemon_controller_delegate_linux.h',
267 'host/setup/daemon_controller_delegate_mac.h',
268 'host/setup/daemon_controller_delegate_mac.mm',
269 'host/setup/daemon_controller_delegate_win.cc',
270 'host/setup/daemon_controller_delegate_win.h',
271 'host/setup/me2me_native_messaging_host.cc',
272 'host/setup/me2me_native_messaging_host.h',
273 'host/setup/oauth_client.cc',
274 'host/setup/oauth_client.h',
275 'host/setup/oauth_helper.cc',
276 'host/setup/oauth_helper.h',
277 'host/setup/pin_validator.cc',
278 'host/setup/pin_validator.h',
279 'host/setup/service_client.cc',
280 'host/setup/service_client.h',
281 'host/setup/test_util.cc',
282 'host/setup/test_util.h',
283 'host/setup/win/auth_code_getter.cc',
284 'host/setup/win/auth_code_getter.h',
285 ],
286 'remoting_host_native_messaging_sources': [
287 'host/native_messaging/native_messaging_pipe.cc',
288 'host/native_messaging/native_messaging_pipe.h',
289 'host/native_messaging/native_messaging_reader.cc',
290 'host/native_messaging/native_messaging_reader.h',
291 'host/native_messaging/native_messaging_writer.cc',
292 'host/native_messaging/native_messaging_writer.h',
293 'host/native_messaging/pipe_messaging_channel.cc',
294 'host/native_messaging/pipe_messaging_channel.h',
295 ],
296 'remoting_cast_sources': [
263 'host/cast_extension.cc', 297 'host/cast_extension.cc',
264 'host/cast_extension.h', 298 'host/cast_extension.h',
265 'host/cast_extension_session.cc', 299 'host/cast_extension_session.cc',
266 'host/cast_extension_session.h', 300 'host/cast_extension_session.h',
267 'host/cast_video_capturer_adapter.cc', 301 'host/cast_video_capturer_adapter.cc',
268 'host/cast_video_capturer_adapter.h', 302 'host/cast_video_capturer_adapter.h',
269 ], 303 ],
270 'remoting_it2me_host_static_sources' : [ 304 'remoting_it2me_host_static_sources' : [
271 'host/it2me/it2me_confirmation_dialog.cc', 305 'host/it2me/it2me_confirmation_dialog.cc',
272 'host/it2me/it2me_confirmation_dialog.h', 306 'host/it2me/it2me_confirmation_dialog.h',
273 'host/it2me/it2me_confirmation_dialog_chromeos.cc', 307 'host/it2me/it2me_confirmation_dialog_chromeos.cc',
274 'host/it2me/it2me_confirmation_dialog_proxy.cc', 308 'host/it2me/it2me_confirmation_dialog_proxy.cc',
275 'host/it2me/it2me_confirmation_dialog_proxy.h', 309 'host/it2me/it2me_confirmation_dialog_proxy.h',
276 'host/it2me/it2me_host.cc', 310 'host/it2me/it2me_host.cc',
277 'host/it2me/it2me_host.h', 311 'host/it2me/it2me_host.h',
278 'host/it2me/it2me_native_messaging_host.cc', 312 'host/it2me/it2me_native_messaging_host.cc',
279 'host/it2me/it2me_native_messaging_host.h', 313 'host/it2me/it2me_native_messaging_host.h',
280 ], 314 ],
281 } 315 }
282 } 316 }
OLDNEW
« no previous file with comments | « remoting/remoting_host.gypi ('k') | remoting/remoting_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698