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

Side by Side Diff: remoting/remoting.gyp

Issue 11040065: [Chromoting] Reimplemented the worker process launcher to take into account the encountered issues: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Count the worker exiting too such as a failure. Created 8 years, 2 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 | Annotate | Revision Log
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 'variables': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 10
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 }, # end of target 'remoting_controller' 577 }, # end of target 'remoting_controller'
578 { 578 {
579 'target_name': 'remoting_daemon', 579 'target_name': 'remoting_daemon',
580 'type': 'executable', 580 'type': 'executable',
581 'variables': { 'enable_wexit_time_destructors': 1, }, 581 'variables': { 'enable_wexit_time_destructors': 1, },
582 'dependencies': [ 582 'dependencies': [
583 '../base/base.gyp:base', 583 '../base/base.gyp:base',
584 '../base/base.gyp:base_static', 584 '../base/base.gyp:base_static',
585 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 585 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
586 '../ipc/ipc.gyp:ipc', 586 '../ipc/ipc.gyp:ipc',
587 '../net/net.gyp:net',
587 'remoting_base', 588 'remoting_base',
588 'remoting_breakpad', 589 'remoting_breakpad',
589 'remoting_version_resources', 590 'remoting_version_resources',
590 ], 591 ],
591 'sources': [ 592 'sources': [
592 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc', 593 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc',
593 'base/scoped_sc_handle_win.h', 594 'base/scoped_sc_handle_win.h',
594 'host/branding.cc', 595 'host/branding.cc',
595 'host/branding.h', 596 'host/branding.h',
596 'host/chromoting_messages.cc', 597 'host/chromoting_messages.cc',
597 'host/chromoting_messages.h', 598 'host/chromoting_messages.h',
598 'host/config_file_watcher.cc', 599 'host/config_file_watcher.cc',
599 'host/config_file_watcher.h', 600 'host/config_file_watcher.h',
600 'host/daemon_process.cc', 601 'host/daemon_process.cc',
601 'host/daemon_process.h', 602 'host/daemon_process.h',
602 'host/daemon_process_win.cc', 603 'host/daemon_process_win.cc',
603 'host/host_exit_codes.h', 604 'host/host_exit_codes.h',
604 'host/usage_stats_consent.h', 605 'host/usage_stats_consent.h',
605 'host/usage_stats_consent_win.cc', 606 'host/usage_stats_consent_win.cc',
606 'host/win/host_service.cc', 607 'host/win/host_service.cc',
607 'host/win/host_service.h', 608 'host/win/host_service.h',
608 'host/win/host_service.rc', 609 'host/win/host_service.rc',
609 'host/win/host_service_resource.h', 610 'host/win/host_service_resource.h',
610 'host/win/launch_process_with_token.cc', 611 'host/win/launch_process_with_token.cc',
611 'host/win/launch_process_with_token.h', 612 'host/win/launch_process_with_token.h',
612 'host/win/omaha.cc', 613 'host/win/omaha.cc',
613 'host/win/omaha.h', 614 'host/win/omaha.h',
615 'host/win/unprivileged_process_delegate.cc',
616 'host/win/unprivileged_process_delegate.h',
614 'host/win/worker_process_launcher.cc', 617 'host/win/worker_process_launcher.cc',
615 'host/win/worker_process_launcher.h', 618 'host/win/worker_process_launcher.h',
616 'host/win/wts_console_monitor.h', 619 'host/win/wts_console_monitor.h',
617 'host/win/wts_console_observer.h', 620 'host/win/wts_console_observer.h',
618 'host/win/wts_session_process_launcher.cc', 621 'host/win/wts_console_session_process_driver.cc',
619 'host/win/wts_session_process_launcher.h', 622 'host/win/wts_console_session_process_driver.h',
623 'host/win/wts_session_process_delegate.cc',
624 'host/win/wts_session_process_delegate.h',
620 'host/worker_process_ipc_delegate.h', 625 'host/worker_process_ipc_delegate.h',
621 ], 626 ],
622 'msvs_settings': { 627 'msvs_settings': {
623 'VCLinkerTool': { 628 'VCLinkerTool': {
624 'AdditionalDependencies': [ 629 'AdditionalDependencies': [
625 'wtsapi32.lib', 630 'wtsapi32.lib',
626 ], 631 ],
627 # 2 == /SUBSYSTEM:WINDOWS 632 # 2 == /SUBSYSTEM:WINDOWS
628 'SubSystem': '2', 633 'SubSystem': '2',
629 }, 634 },
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1908 'host/policy_hack/policy_watcher_unittest.cc', 1913 'host/policy_hack/policy_watcher_unittest.cc',
1909 'host/register_support_host_request_unittest.cc', 1914 'host/register_support_host_request_unittest.cc',
1910 'host/remote_input_filter_unittest.cc', 1915 'host/remote_input_filter_unittest.cc',
1911 'host/resizing_host_observer_unittest.cc', 1916 'host/resizing_host_observer_unittest.cc',
1912 'host/screen_recorder_unittest.cc', 1917 'host/screen_recorder_unittest.cc',
1913 'host/server_log_entry_unittest.cc', 1918 'host/server_log_entry_unittest.cc',
1914 'host/test_key_pair.h', 1919 'host/test_key_pair.h',
1915 'host/video_frame_capturer_helper_unittest.cc', 1920 'host/video_frame_capturer_helper_unittest.cc',
1916 'host/video_frame_capturer_mac_unittest.cc', 1921 'host/video_frame_capturer_mac_unittest.cc',
1917 'host/video_frame_capturer_unittest.cc', 1922 'host/video_frame_capturer_unittest.cc',
1923 'host/win/worker_process_launcher.cc',
1924 'host/win/worker_process_launcher.h',
1925 'host/win/worker_process_launcher_unittest.cc',
1918 'jingle_glue/chromium_socket_factory_unittest.cc', 1926 'jingle_glue/chromium_socket_factory_unittest.cc',
1919 'jingle_glue/fake_signal_strategy.cc', 1927 'jingle_glue/fake_signal_strategy.cc',
1920 'jingle_glue/fake_signal_strategy.h', 1928 'jingle_glue/fake_signal_strategy.h',
1921 'jingle_glue/iq_sender_unittest.cc', 1929 'jingle_glue/iq_sender_unittest.cc',
1922 'jingle_glue/mock_objects.cc', 1930 'jingle_glue/mock_objects.cc',
1923 'jingle_glue/mock_objects.h', 1931 'jingle_glue/mock_objects.h',
1924 'protocol/authenticator_test_base.cc', 1932 'protocol/authenticator_test_base.cc',
1925 'protocol/authenticator_test_base.h', 1933 'protocol/authenticator_test_base.h',
1926 'protocol/buffered_socket_writer_unittest.cc', 1934 'protocol/buffered_socket_writer_unittest.cc',
1927 'protocol/channel_multiplexer_unittest.cc', 1935 'protocol/channel_multiplexer_unittest.cc',
(...skipping 17 matching lines...) Expand all
1945 'protocol/negotiating_authenticator_unittest.cc', 1953 'protocol/negotiating_authenticator_unittest.cc',
1946 'protocol/protocol_mock_objects.cc', 1954 'protocol/protocol_mock_objects.cc',
1947 'protocol/protocol_mock_objects.h', 1955 'protocol/protocol_mock_objects.h',
1948 'protocol/ppapi_module_stub.cc', 1956 'protocol/ppapi_module_stub.cc',
1949 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1957 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1950 'protocol/v2_authenticator_unittest.cc', 1958 'protocol/v2_authenticator_unittest.cc',
1951 'run_all_unittests.cc', 1959 'run_all_unittests.cc',
1952 ], 1960 ],
1953 'conditions': [ 1961 'conditions': [
1954 [ 'OS=="win"', { 1962 [ 'OS=="win"', {
1963 'dependencies': [
1964 '../ipc/ipc.gyp:ipc',
1965 ],
1955 'include_dirs': [ 1966 'include_dirs': [
1956 '../breakpad/src', 1967 '../breakpad/src',
1957 ], 1968 ],
1958 'link_settings': { 1969 'link_settings': {
1959 'libraries': [ 1970 'libraries': [
1960 '-lrpcrt4.lib', 1971 '-lrpcrt4.lib',
1961 ], 1972 ],
1962 }, 1973 },
1963 }], 1974 }],
1964 ['chromeos != 0', { 1975 ['chromeos != 0', {
(...skipping 19 matching lines...) Expand all
1984 '../base/allocator/allocator.gyp:allocator', 1995 '../base/allocator/allocator.gyp:allocator',
1985 ], 1996 ],
1986 }, 1997 },
1987 ], 1998 ],
1988 ], 1999 ],
1989 }], 2000 }],
1990 ], # end of 'conditions' 2001 ], # end of 'conditions'
1991 }, # end of target 'remoting_unittests' 2002 }, # end of target 'remoting_unittests'
1992 ], # end of targets 2003 ], # end of targets
1993 } 2004 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698