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

Side by Side Diff: remoting/remoting.gyp

Issue 10796099: Introducing remoting::Stoppable helper base class implementing asynchronous shutdown on a specific t (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | 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 # Use consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 }, # end of target 'remoting_host_controller' 553 }, # end of target 'remoting_host_controller'
554 { 554 {
555 'target_name': 'remoting_service', 555 'target_name': 'remoting_service',
556 'type': 'executable', 556 'type': 'executable',
557 'variables': { 'enable_wexit_time_destructors': 1, }, 557 'variables': { 'enable_wexit_time_destructors': 1, },
558 'dependencies': [ 558 'dependencies': [
559 '../base/base.gyp:base', 559 '../base/base.gyp:base',
560 '../base/base.gyp:base_static', 560 '../base/base.gyp:base_static',
561 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 561 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
562 '../ipc/ipc.gyp:ipc', 562 '../ipc/ipc.gyp:ipc',
563 'remoting_base',
563 'remoting_breakpad', 564 'remoting_breakpad',
564 'remoting_version_resources', 565 'remoting_version_resources',
565 ], 566 ],
566 'sources': [ 567 'sources': [
567 'base/scoped_sc_handle_win.h', 568 'base/scoped_sc_handle_win.h',
568 'host/branding.cc', 569 'host/branding.cc',
569 'host/branding.h', 570 'host/branding.h',
570 'host/chromoting_messages.cc', 571 'host/chromoting_messages.cc',
571 'host/chromoting_messages.h', 572 'host/chromoting_messages.h',
572 'host/constants.h', 573 'host/constants.h',
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 '../skia/skia.gyp:skia', 1051 '../skia/skia.gyp:skia',
1051 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 1052 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
1052 'proto/chromotocol.gyp:chromotocol_proto_lib', 1053 'proto/chromotocol.gyp:chromotocol_proto_lib',
1053 ], 1054 ],
1054 # This target needs a hard dependency because dependent targets 1055 # This target needs a hard dependency because dependent targets
1055 # depend on chromotocol_proto_lib for headers. 1056 # depend on chromotocol_proto_lib for headers.
1056 'hard_dependency': 1, 1057 'hard_dependency': 1,
1057 'sources': [ 1058 'sources': [
1058 'base/auth_token_util.cc', 1059 'base/auth_token_util.cc',
1059 'base/auth_token_util.h', 1060 'base/auth_token_util.h',
1061 'base/auto_message_loop.cc',
1062 'base/auto_message_loop.h',
1063 'base/auto_thread.cc',
1064 'base/auto_thread.h',
1060 'base/capture_data.cc', 1065 'base/capture_data.cc',
1061 'base/capture_data.h', 1066 'base/capture_data.h',
1062 'base/compound_buffer.cc', 1067 'base/compound_buffer.cc',
1063 'base/compound_buffer.h', 1068 'base/compound_buffer.h',
1064 'base/compressor.h', 1069 'base/compressor.h',
1065 'base/compressor_verbatim.cc', 1070 'base/compressor_verbatim.cc',
1066 'base/compressor_verbatim.h', 1071 'base/compressor_verbatim.h',
1067 'base/compressor_zlib.cc', 1072 'base/compressor_zlib.cc',
1068 'base/compressor_zlib.h', 1073 'base/compressor_zlib.h',
1069 'base/constants.cc', 1074 'base/constants.cc',
(...skipping 12 matching lines...) Expand all
1082 'base/encoder_vp8.cc', 1087 'base/encoder_vp8.cc',
1083 'base/encoder_vp8.h', 1088 'base/encoder_vp8.h',
1084 'base/encoder_row_based.cc', 1089 'base/encoder_row_based.cc',
1085 'base/encoder_row_based.h', 1090 'base/encoder_row_based.h',
1086 'base/plugin_message_loop_proxy.cc', 1091 'base/plugin_message_loop_proxy.cc',
1087 'base/plugin_message_loop_proxy.h', 1092 'base/plugin_message_loop_proxy.h',
1088 'base/rate_counter.cc', 1093 'base/rate_counter.cc',
1089 'base/rate_counter.h', 1094 'base/rate_counter.h',
1090 'base/running_average.cc', 1095 'base/running_average.cc',
1091 'base/running_average.h', 1096 'base/running_average.h',
1097 'base/shutdownable.cc',
1098 'base/shutdownable.h',
1092 'base/util.cc', 1099 'base/util.cc',
1093 'base/util.h', 1100 'base/util.h',
1094 ], 1101 ],
1095 }, # end of target 'remoting_base' 1102 }, # end of target 'remoting_base'
1096 1103
1097 { 1104 {
1098 'target_name': 'remoting_host', 1105 'target_name': 'remoting_host',
1099 'type': 'static_library', 1106 'type': 'static_library',
1100 'variables': { 'enable_wexit_time_destructors': 1, }, 1107 'variables': { 'enable_wexit_time_destructors': 1, },
1101 'dependencies': [ 1108 'dependencies': [
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 '../base/allocator/allocator.gyp:allocator', 1781 '../base/allocator/allocator.gyp:allocator',
1775 ], 1782 ],
1776 }, 1783 },
1777 ], 1784 ],
1778 ], 1785 ],
1779 }], 1786 }],
1780 ], # end of 'conditions' 1787 ], # end of 'conditions'
1781 }, # end of target 'remoting_unittests' 1788 }, # end of target 'remoting_unittests'
1782 ], # end of targets 1789 ], # end of targets
1783 } 1790 }
OLDNEW
« remoting/host/host_service_win.cc ('K') | « remoting/host/wts_session_process_launcher_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698