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

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: Fixing case of the include file name. 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 'remoting_audio': 0, 10 'remoting_audio': 0,
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 }, # end of target 'remoting_host_controller' 577 }, # end of target 'remoting_host_controller'
578 { 578 {
579 'target_name': 'remoting_service', 579 'target_name': 'remoting_service',
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 'remoting_base',
587 'remoting_breakpad', 588 'remoting_breakpad',
588 'remoting_version_resources', 589 'remoting_version_resources',
589 ], 590 ],
590 'sources': [ 591 'sources': [
591 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_service_version.rc', 592 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_service_version.rc',
592 'base/scoped_sc_handle_win.h', 593 'base/scoped_sc_handle_win.h',
593 'host/branding.cc', 594 'host/branding.cc',
594 'host/branding.h', 595 'host/branding.h',
595 'host/chromoting_messages.cc', 596 'host/chromoting_messages.cc',
596 'host/chromoting_messages.h', 597 'host/chromoting_messages.h',
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 'base/encoder_vp8.cc', 1159 'base/encoder_vp8.cc',
1159 'base/encoder_vp8.h', 1160 'base/encoder_vp8.h',
1160 'base/encoder_row_based.cc', 1161 'base/encoder_row_based.cc',
1161 'base/encoder_row_based.h', 1162 'base/encoder_row_based.h',
1162 'base/plugin_thread_task_runner.cc', 1163 'base/plugin_thread_task_runner.cc',
1163 'base/plugin_thread_task_runner.h', 1164 'base/plugin_thread_task_runner.h',
1164 'base/rate_counter.cc', 1165 'base/rate_counter.cc',
1165 'base/rate_counter.h', 1166 'base/rate_counter.h',
1166 'base/running_average.cc', 1167 'base/running_average.cc',
1167 'base/running_average.h', 1168 'base/running_average.h',
1169 'base/stoppable.cc',
1170 'base/stoppable.h',
1168 'base/util.cc', 1171 'base/util.cc',
1169 'base/util.h', 1172 'base/util.h',
1170 ], 1173 ],
1171 }, # end of target 'remoting_base' 1174 }, # end of target 'remoting_base'
1172 1175
1173 { 1176 {
1174 'target_name': 'remoting_host', 1177 'target_name': 'remoting_host',
1175 'type': 'static_library', 1178 'type': 'static_library',
1176 'variables': { 'enable_wexit_time_destructors': 1, }, 1179 'variables': { 'enable_wexit_time_destructors': 1, },
1177 'dependencies': [ 1180 'dependencies': [
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
1823 '../base/allocator/allocator.gyp:allocator', 1826 '../base/allocator/allocator.gyp:allocator',
1824 ], 1827 ],
1825 }, 1828 },
1826 ], 1829 ],
1827 ], 1830 ],
1828 }], 1831 }],
1829 ], # end of 'conditions' 1832 ], # end of 'conditions'
1830 }, # end of target 'remoting_unittests' 1833 }, # end of target 'remoting_unittests'
1831 ], # end of targets 1834 ], # end of targets
1832 } 1835 }
OLDNEW
« remoting/base/stoppable.h ('K') | « remoting/host/win/wts_session_process_launcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698