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

Side by Side Diff: remoting/remoting_host.gypi

Issue 422503004: Adding ability to stream windows and inject events to them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added exit code to remoting_host when unable to parse window_id Created 6 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 6 'includes': [
7 'remoting_host_linux.gypi', 7 'remoting_host_linux.gypi',
8 'remoting_host_mac.gypi', 8 'remoting_host_mac.gypi',
9 'remoting_host_win.gypi', 9 'remoting_host_win.gypi',
10 ], 10 ],
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'host/screen_resolution.cc', 226 'host/screen_resolution.cc',
227 'host/screen_resolution.h', 227 'host/screen_resolution.h',
228 'host/server_log_entry_host.cc', 228 'host/server_log_entry_host.cc',
229 'host/server_log_entry_host.h', 229 'host/server_log_entry_host.h',
230 'host/session_manager_factory.cc', 230 'host/session_manager_factory.cc',
231 'host/session_manager_factory.h', 231 'host/session_manager_factory.h',
232 'host/shaped_screen_capturer.cc', 232 'host/shaped_screen_capturer.cc',
233 'host/shaped_screen_capturer.h', 233 'host/shaped_screen_capturer.h',
234 'host/signaling_connector.cc', 234 'host/signaling_connector.cc',
235 'host/signaling_connector.h', 235 'host/signaling_connector.h',
236 'host/single_window_desktop_environment.cc',
237 'host/ingle_window_desktop_environment.h',
Sergey Ulanov 2014/08/12 18:18:00 typo (gyp effectively ignores .h files in the lis
ronakvora do not use 2014/08/13 18:04:44 Done.
238 'host/single_window_input_injector_mac.cc',
239 'host/single_window_input_injector.h',
236 'host/token_validator_base.cc', 240 'host/token_validator_base.cc',
237 'host/token_validator_base.h', 241 'host/token_validator_base.h',
238 'host/token_validator_factory_impl.cc', 242 'host/token_validator_factory_impl.cc',
239 'host/token_validator_factory_impl.h', 243 'host/token_validator_factory_impl.h',
240 'host/usage_stats_consent.h', 244 'host/usage_stats_consent.h',
241 'host/usage_stats_consent_mac.cc', 245 'host/usage_stats_consent_mac.cc',
242 'host/usage_stats_consent_win.cc', 246 'host/usage_stats_consent_win.cc',
243 'host/username.cc', 247 'host/username.cc',
244 'host/username.h', 248 'host/username.h',
245 'host/video_frame_recorder.cc', 249 'host/video_frame_recorder.cc',
(...skipping 15 matching lines...) Expand all
261 'host/win/security_descriptor.h', 265 'host/win/security_descriptor.h',
262 'host/win/session_desktop_environment.cc', 266 'host/win/session_desktop_environment.cc',
263 'host/win/session_desktop_environment.h', 267 'host/win/session_desktop_environment.h',
264 'host/win/session_input_injector.cc', 268 'host/win/session_input_injector.cc',
265 'host/win/session_input_injector.h', 269 'host/win/session_input_injector.h',
266 'host/win/window_station_and_desktop.cc', 270 'host/win/window_station_and_desktop.cc',
267 'host/win/window_station_and_desktop.h', 271 'host/win/window_station_and_desktop.h',
268 'host/win/wts_terminal_monitor.cc', 272 'host/win/wts_terminal_monitor.cc',
269 'host/win/wts_terminal_monitor.h', 273 'host/win/wts_terminal_monitor.h',
270 'host/win/wts_terminal_observer.h', 274 'host/win/wts_terminal_observer.h',
275 'host/window_capturer_screen_wrapper.cc',
276 'host/window_capturer_screen_wrapper.h',
271 ], 277 ],
272 'conditions': [ 278 'conditions': [
273 ['OS=="linux"', { 279 ['OS=="linux"', {
274 'dependencies': [ 280 'dependencies': [
275 # Always use GTK on Linux, even for Aura builds. 281 # Always use GTK on Linux, even for Aura builds.
276 '../build/linux/system.gyp:gtk', 282 '../build/linux/system.gyp:gtk',
277 '../build/linux/system.gyp:x11', 283 '../build/linux/system.gyp:x11',
278 '../build/linux/system.gyp:xext', 284 '../build/linux/system.gyp:xext',
279 '../build/linux/system.gyp:xfixes', 285 '../build/linux/system.gyp:xfixes',
280 '../build/linux/system.gyp:xi', 286 '../build/linux/system.gyp:xi',
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 }], # mac_breakpad==1 846 }], # mac_breakpad==1
841 ], # conditions 847 ], # conditions
842 }], # OS=mac 848 }], # OS=mac
843 ], 849 ],
844 }, # end of target 'remoting_it2me_native_messaging_host' 850 }, # end of target 'remoting_it2me_native_messaging_host'
845 ], # end of 'targets' 851 ], # end of 'targets'
846 }], # OS!="win" 852 }], # OS!="win"
847 853
848 ], # end of 'conditions' 854 ], # end of 'conditions'
849 } 855 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698