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

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: rebased 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
« no previous file with comments | « remoting/host/worker_process_ipc_delegate.h ('k') | 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 (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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 }, # end of target 'remoting_controller' 585 }, # end of target 'remoting_controller'
586 { 586 {
587 'target_name': 'remoting_daemon', 587 'target_name': 'remoting_daemon',
588 'type': 'executable', 588 'type': 'executable',
589 'variables': { 'enable_wexit_time_destructors': 1, }, 589 'variables': { 'enable_wexit_time_destructors': 1, },
590 'dependencies': [ 590 'dependencies': [
591 '../base/base.gyp:base', 591 '../base/base.gyp:base',
592 '../base/base.gyp:base_static', 592 '../base/base.gyp:base_static',
593 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 593 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
594 '../ipc/ipc.gyp:ipc', 594 '../ipc/ipc.gyp:ipc',
595 '../net/net.gyp:net',
595 'remoting_base', 596 'remoting_base',
596 'remoting_breakpad', 597 'remoting_breakpad',
597 'remoting_version_resources', 598 'remoting_version_resources',
598 ], 599 ],
599 'sources': [ 600 'sources': [
600 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc', 601 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc',
601 'base/scoped_sc_handle_win.h', 602 'base/scoped_sc_handle_win.h',
602 'host/branding.cc', 603 'host/branding.cc',
603 'host/branding.h', 604 'host/branding.h',
604 'host/chromoting_messages.cc', 605 'host/chromoting_messages.cc',
605 'host/chromoting_messages.h', 606 'host/chromoting_messages.h',
606 'host/config_file_watcher.cc', 607 'host/config_file_watcher.cc',
607 'host/config_file_watcher.h', 608 'host/config_file_watcher.h',
608 'host/daemon_process.cc', 609 'host/daemon_process.cc',
609 'host/daemon_process.h', 610 'host/daemon_process.h',
610 'host/daemon_process_win.cc', 611 'host/daemon_process_win.cc',
611 'host/host_exit_codes.h', 612 'host/host_exit_codes.h',
612 'host/usage_stats_consent.h', 613 'host/usage_stats_consent.h',
613 'host/usage_stats_consent_win.cc', 614 'host/usage_stats_consent_win.cc',
614 'host/win/host_service.cc', 615 'host/win/host_service.cc',
615 'host/win/host_service.h', 616 'host/win/host_service.h',
616 'host/win/host_service.rc', 617 'host/win/host_service.rc',
617 'host/win/host_service_resource.h', 618 'host/win/host_service_resource.h',
618 'host/win/launch_process_with_token.cc', 619 'host/win/launch_process_with_token.cc',
619 'host/win/launch_process_with_token.h', 620 'host/win/launch_process_with_token.h',
620 'host/win/omaha.cc', 621 'host/win/omaha.cc',
621 'host/win/omaha.h', 622 'host/win/omaha.h',
623 'host/win/unprivileged_process_delegate.cc',
624 'host/win/unprivileged_process_delegate.h',
622 'host/win/worker_process_launcher.cc', 625 'host/win/worker_process_launcher.cc',
623 'host/win/worker_process_launcher.h', 626 'host/win/worker_process_launcher.h',
624 'host/win/wts_console_monitor.h', 627 'host/win/wts_console_monitor.h',
625 'host/win/wts_console_observer.h', 628 'host/win/wts_console_observer.h',
626 'host/win/wts_session_process_launcher.cc', 629 'host/win/wts_console_session_process_driver.cc',
627 'host/win/wts_session_process_launcher.h', 630 'host/win/wts_console_session_process_driver.h',
631 'host/win/wts_session_process_delegate.cc',
632 'host/win/wts_session_process_delegate.h',
628 'host/worker_process_ipc_delegate.h', 633 'host/worker_process_ipc_delegate.h',
629 ], 634 ],
630 'msvs_settings': { 635 'msvs_settings': {
631 'VCLinkerTool': { 636 'VCLinkerTool': {
632 'AdditionalDependencies': [ 637 'AdditionalDependencies': [
633 'wtsapi32.lib', 638 'wtsapi32.lib',
634 ], 639 ],
635 # 2 == /SUBSYSTEM:WINDOWS 640 # 2 == /SUBSYSTEM:WINDOWS
636 'SubSystem': '2', 641 'SubSystem': '2',
637 }, 642 },
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1937 'host/register_support_host_request_unittest.cc', 1942 'host/register_support_host_request_unittest.cc',
1938 'host/remote_input_filter_unittest.cc', 1943 'host/remote_input_filter_unittest.cc',
1939 'host/resizing_host_observer_unittest.cc', 1944 'host/resizing_host_observer_unittest.cc',
1940 'host/screen_recorder_unittest.cc', 1945 'host/screen_recorder_unittest.cc',
1941 'host/server_log_entry_unittest.cc', 1946 'host/server_log_entry_unittest.cc',
1942 'host/setup/oauth_helper_unittest.cc', 1947 'host/setup/oauth_helper_unittest.cc',
1943 'host/test_key_pair.h', 1948 'host/test_key_pair.h',
1944 'host/video_frame_capturer_helper_unittest.cc', 1949 'host/video_frame_capturer_helper_unittest.cc',
1945 'host/video_frame_capturer_mac_unittest.cc', 1950 'host/video_frame_capturer_mac_unittest.cc',
1946 'host/video_frame_capturer_unittest.cc', 1951 'host/video_frame_capturer_unittest.cc',
1952 'host/win/worker_process_launcher.cc',
1953 'host/win/worker_process_launcher.h',
1954 'host/win/worker_process_launcher_unittest.cc',
1947 'jingle_glue/chromium_socket_factory_unittest.cc', 1955 'jingle_glue/chromium_socket_factory_unittest.cc',
1948 'jingle_glue/fake_signal_strategy.cc', 1956 'jingle_glue/fake_signal_strategy.cc',
1949 'jingle_glue/fake_signal_strategy.h', 1957 'jingle_glue/fake_signal_strategy.h',
1950 'jingle_glue/iq_sender_unittest.cc', 1958 'jingle_glue/iq_sender_unittest.cc',
1951 'jingle_glue/mock_objects.cc', 1959 'jingle_glue/mock_objects.cc',
1952 'jingle_glue/mock_objects.h', 1960 'jingle_glue/mock_objects.h',
1953 'protocol/authenticator_test_base.cc', 1961 'protocol/authenticator_test_base.cc',
1954 'protocol/authenticator_test_base.h', 1962 'protocol/authenticator_test_base.h',
1955 'protocol/buffered_socket_writer_unittest.cc', 1963 'protocol/buffered_socket_writer_unittest.cc',
1956 'protocol/channel_multiplexer_unittest.cc', 1964 'protocol/channel_multiplexer_unittest.cc',
(...skipping 17 matching lines...) Expand all
1974 'protocol/negotiating_authenticator_unittest.cc', 1982 'protocol/negotiating_authenticator_unittest.cc',
1975 'protocol/protocol_mock_objects.cc', 1983 'protocol/protocol_mock_objects.cc',
1976 'protocol/protocol_mock_objects.h', 1984 'protocol/protocol_mock_objects.h',
1977 'protocol/ppapi_module_stub.cc', 1985 'protocol/ppapi_module_stub.cc',
1978 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1986 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1979 'protocol/v2_authenticator_unittest.cc', 1987 'protocol/v2_authenticator_unittest.cc',
1980 'run_all_unittests.cc', 1988 'run_all_unittests.cc',
1981 ], 1989 ],
1982 'conditions': [ 1990 'conditions': [
1983 [ 'OS=="win"', { 1991 [ 'OS=="win"', {
1992 'dependencies': [
1993 '../ipc/ipc.gyp:ipc',
1994 ],
1984 'include_dirs': [ 1995 'include_dirs': [
1985 '../breakpad/src', 1996 '../breakpad/src',
1986 ], 1997 ],
1987 'link_settings': { 1998 'link_settings': {
1988 'libraries': [ 1999 'libraries': [
1989 '-lrpcrt4.lib', 2000 '-lrpcrt4.lib',
1990 ], 2001 ],
1991 }, 2002 },
1992 }], 2003 }],
1993 ['chromeos != 0', { 2004 ['chromeos != 0', {
(...skipping 19 matching lines...) Expand all
2013 '../base/allocator/allocator.gyp:allocator', 2024 '../base/allocator/allocator.gyp:allocator',
2014 ], 2025 ],
2015 }, 2026 },
2016 ], 2027 ],
2017 ], 2028 ],
2018 }], 2029 }],
2019 ], # end of 'conditions' 2030 ], # end of 'conditions'
2020 }, # end of target 'remoting_unittests' 2031 }, # end of target 'remoting_unittests'
2021 ], # end of targets 2032 ], # end of targets
2022 } 2033 }
OLDNEW
« no previous file with comments | « remoting/host/worker_process_ipc_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698