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

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: Make sure Shutdownable methods are called on one thread. 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1082 'base/encoder_vp8.cc', 1083 'base/encoder_vp8.cc',
1083 'base/encoder_vp8.h', 1084 'base/encoder_vp8.h',
1084 'base/encoder_row_based.cc', 1085 'base/encoder_row_based.cc',
1085 'base/encoder_row_based.h', 1086 'base/encoder_row_based.h',
1086 'base/plugin_message_loop_proxy.cc', 1087 'base/plugin_message_loop_proxy.cc',
1087 'base/plugin_message_loop_proxy.h', 1088 'base/plugin_message_loop_proxy.h',
1088 'base/rate_counter.cc', 1089 'base/rate_counter.cc',
1089 'base/rate_counter.h', 1090 'base/rate_counter.h',
1090 'base/running_average.cc', 1091 'base/running_average.cc',
1091 'base/running_average.h', 1092 'base/running_average.h',
1093 'base/shutdownable.cc',
1094 'base/shutdownable.h',
1092 'base/util.cc', 1095 'base/util.cc',
1093 'base/util.h', 1096 'base/util.h',
1094 ], 1097 ],
1095 }, # end of target 'remoting_base' 1098 }, # end of target 'remoting_base'
1096 1099
1097 { 1100 {
1098 'target_name': 'remoting_host', 1101 'target_name': 'remoting_host',
1099 'type': 'static_library', 1102 'type': 'static_library',
1100 'variables': { 'enable_wexit_time_destructors': 1, }, 1103 'variables': { 'enable_wexit_time_destructors': 1, },
1101 'dependencies': [ 1104 'dependencies': [
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 '../base/allocator/allocator.gyp:allocator', 1777 '../base/allocator/allocator.gyp:allocator',
1775 ], 1778 ],
1776 }, 1779 },
1777 ], 1780 ],
1778 ], 1781 ],
1779 }], 1782 }],
1780 ], # end of 'conditions' 1783 ], # end of 'conditions'
1781 }, # end of target 'remoting_unittests' 1784 }, # end of target 'remoting_unittests'
1782 ], # end of targets 1785 ], # end of targets
1783 } 1786 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698