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

Side by Side Diff: remoting/remoting_host_srcs.gypi

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

Powered by Google App Engine
This is Rietveld 408576698