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

Side by Side Diff: remoting/remoting.gyp

Issue 14979008: unittests for Chromoting native messaging host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows compile warning Created 7 years, 6 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
« remoting/host/setup/pipe.cc ('K') | « remoting/host/setup/pipe.cc ('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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 606
607 { 607 {
608 'target_name': 'remoting_host_setup_base', 608 'target_name': 'remoting_host_setup_base',
609 'type': 'static_library', 609 'type': 'static_library',
610 'variables': { 'enable_wexit_time_destructors': 1, }, 610 'variables': { 'enable_wexit_time_destructors': 1, },
611 'dependencies': [ 611 'dependencies': [
612 '../base/base.gyp:base', 612 '../base/base.gyp:base',
613 '../google_apis/google_apis.gyp:google_apis', 613 '../google_apis/google_apis.gyp:google_apis',
614 'remoting_host', 614 'remoting_host',
615 ], 615 ],
616 'defines': [
617 'VERSION=<(version_full)',
618 ],
616 'sources': [ 619 'sources': [
617 'host/setup/daemon_controller.h', 620 'host/setup/daemon_controller.h',
618 'host/setup/daemon_controller_linux.cc', 621 'host/setup/daemon_controller_linux.cc',
619 'host/setup/daemon_controller_mac.cc', 622 'host/setup/daemon_controller_mac.cc',
620 'host/setup/daemon_controller_win.cc', 623 'host/setup/daemon_controller_win.cc',
621 'host/setup/daemon_installer_win.cc', 624 'host/setup/daemon_installer_win.cc',
622 'host/setup/daemon_installer_win.h', 625 'host/setup/daemon_installer_win.h',
623 'host/setup/host_starter.cc', 626 'host/setup/host_starter.cc',
624 'host/setup/host_starter.h', 627 'host/setup/host_starter.h',
628 'host/setup/native_messaging_host.cc',
629 'host/setup/native_messaging_host.h',
630 'host/setup/native_messaging_reader.cc',
631 'host/setup/native_messaging_reader.h',
632 'host/setup/native_messaging_writer.cc',
633 'host/setup/native_messaging_writer.h',
625 'host/setup/oauth_helper.cc', 634 'host/setup/oauth_helper.cc',
626 'host/setup/oauth_helper.h', 635 'host/setup/oauth_helper.h',
627 'host/setup/pin_validator.cc', 636 'host/setup/pin_validator.cc',
628 'host/setup/pin_validator.h', 637 'host/setup/pin_validator.h',
638 'host/setup/pipe.cc',
639 'host/setup/pipe.h',
629 'host/setup/win/auth_code_getter.cc', 640 'host/setup/win/auth_code_getter.cc',
630 'host/setup/win/auth_code_getter.h', 641 'host/setup/win/auth_code_getter.h',
631 ], 642 ],
632 'conditions': [ 643 'conditions': [
633 ['OS=="win"', { 644 ['OS=="win"', {
634 'dependencies': [ 645 'dependencies': [
635 '../google_update/google_update.gyp:google_update', 646 '../google_update/google_update.gyp:google_update',
636 'remoting_lib_idl', 647 'remoting_lib_idl',
637 ], 648 ],
638 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 649 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 'dependencies': [ 740 'dependencies': [
730 '../base/base.gyp:base', 741 '../base/base.gyp:base',
731 'remoting_host', 742 'remoting_host',
732 'remoting_host_logging', 743 'remoting_host_logging',
733 'remoting_host_setup_base', 744 'remoting_host_setup_base',
734 ], 745 ],
735 'defines': [ 746 'defines': [
736 'VERSION=<(version_full)', 747 'VERSION=<(version_full)',
737 ], 748 ],
738 'sources': [ 749 'sources': [
739 'host/setup/native_messaging_host.cc',
740 'host/setup/native_messaging_host.h',
741 'host/setup/native_messaging_host_main.cc', 750 'host/setup/native_messaging_host_main.cc',
742 'host/setup/native_messaging_reader.cc',
743 'host/setup/native_messaging_reader.h',
744 'host/setup/native_messaging_writer.cc',
745 'host/setup/native_messaging_writer.h',
746 ], 751 ],
747 'conditions': [ 752 'conditions': [
748 ['OS=="linux" and linux_use_tcmalloc==1', { 753 ['OS=="linux" and linux_use_tcmalloc==1', {
749 'dependencies': [ 754 'dependencies': [
750 '../base/allocator/allocator.gyp:allocator', 755 '../base/allocator/allocator.gyp:allocator',
751 ], 756 ],
752 }], 757 }],
753 ], 758 ],
754 }, # end of target 'remoting_native_messaging_host' 759 }, # end of target 'remoting_native_messaging_host'
755 ], # end of 'targets' 760 ], # end of 'targets'
(...skipping 1874 matching lines...) Expand 10 before | Expand all | Expand 10 after
2630 'host/policy_hack/fake_policy_watcher.cc', 2635 'host/policy_hack/fake_policy_watcher.cc',
2631 'host/policy_hack/fake_policy_watcher.h', 2636 'host/policy_hack/fake_policy_watcher.h',
2632 'host/policy_hack/mock_policy_callback.cc', 2637 'host/policy_hack/mock_policy_callback.cc',
2633 'host/policy_hack/mock_policy_callback.h', 2638 'host/policy_hack/mock_policy_callback.h',
2634 'host/policy_hack/policy_watcher_unittest.cc', 2639 'host/policy_hack/policy_watcher_unittest.cc',
2635 'host/register_support_host_request_unittest.cc', 2640 'host/register_support_host_request_unittest.cc',
2636 'host/remote_input_filter_unittest.cc', 2641 'host/remote_input_filter_unittest.cc',
2637 'host/resizing_host_observer_unittest.cc', 2642 'host/resizing_host_observer_unittest.cc',
2638 'host/screen_resolution_unittest.cc', 2643 'host/screen_resolution_unittest.cc',
2639 'host/server_log_entry_unittest.cc', 2644 'host/server_log_entry_unittest.cc',
2645 'host/setup/native_messaging_host_unittest.cc',
2646 'host/setup/native_messaging_reader_unittest.cc',
2647 'host/setup/native_messaging_writer_unittest.cc',
2640 'host/setup/oauth_helper_unittest.cc', 2648 'host/setup/oauth_helper_unittest.cc',
2641 'host/setup/pin_validator_unittest.cc', 2649 'host/setup/pin_validator_unittest.cc',
2642 'host/token_validator_factory_impl_unittest.cc', 2650 'host/token_validator_factory_impl_unittest.cc',
2643 'host/video_scheduler_unittest.cc', 2651 'host/video_scheduler_unittest.cc',
2644 'host/win/message_window_unittest.cc', 2652 'host/win/message_window_unittest.cc',
2645 'host/win/rdp_client_unittest.cc', 2653 'host/win/rdp_client_unittest.cc',
2646 'host/win/worker_process_launcher.cc', 2654 'host/win/worker_process_launcher.cc',
2647 'host/win/worker_process_launcher.h', 2655 'host/win/worker_process_launcher.h',
2648 'host/win/worker_process_launcher_unittest.cc', 2656 'host/win/worker_process_launcher_unittest.cc',
2649 'jingle_glue/chromium_socket_factory_unittest.cc', 2657 'jingle_glue/chromium_socket_factory_unittest.cc',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
2756 '../base/allocator/allocator.gyp:allocator', 2764 '../base/allocator/allocator.gyp:allocator',
2757 ], 2765 ],
2758 }, 2766 },
2759 ], 2767 ],
2760 ], 2768 ],
2761 }], # end of 'toolkit_uses_gtk == 1' 2769 }], # end of 'toolkit_uses_gtk == 1'
2762 ], # end of 'conditions' 2770 ], # end of 'conditions'
2763 }, # end of target 'remoting_unittests' 2771 }, # end of target 'remoting_unittests'
2764 ], # end of targets 2772 ], # end of targets
2765 } 2773 }
OLDNEW
« remoting/host/setup/pipe.cc ('K') | « remoting/host/setup/pipe.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698