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

Side by Side Diff: remoting/remoting.gyp

Issue 10823062: Introducing the DaemonProcess class that will implements core of the daemon process functionality. … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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
« no previous file with comments | « remoting/host/win/wts_session_process_launcher.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 'remoting_audio': 0, 11 'remoting_audio': 0,
12 'remoting_multi_process%': 0,
13
11 # Use consistent strings across all platforms. Note that the plugin name 14 # Use consistent strings across all platforms. Note that the plugin name
12 # is brand-dependent and is defined further down. 15 # is brand-dependent and is defined further down.
13 # Must match host/plugin/constants.h 16 # Must match host/plugin/constants.h
14 'host_plugin_mime_type': 'application/vnd.chromium.remoting-host', 17 'host_plugin_mime_type': 'application/vnd.chromium.remoting-host',
15 'host_plugin_description': 'Allow another user to access your computer secur ely over the Internet.', 18 'host_plugin_description': 'Allow another user to access your computer secur ely over the Internet.',
16 19
17 # The version is composed from major & minor versions specific to remoting 20 # The version is composed from major & minor versions specific to remoting
18 # and build & patch versions inherited from Chrome. 21 # and build & patch versions inherited from Chrome.
19 'version_py_path': '../chrome/tools/build/version.py', 22 'version_py_path': '../chrome/tools/build/version.py',
20 'version_path': '../remoting/VERSION', 23 'version_path': '../remoting/VERSION',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 ], 200 ],
198 'include_dirs': [ 201 'include_dirs': [
199 '..', # Root of Chrome checkout 202 '..', # Root of Chrome checkout
200 ], 203 ],
201 'conditions': [ 204 'conditions': [
202 ['remoting_audio == 1', { 205 ['remoting_audio == 1', {
203 'defines': [ 206 'defines': [
204 'ENABLE_REMOTING_AUDIO', 207 'ENABLE_REMOTING_AUDIO',
205 ], 208 ],
206 }], 209 }],
210 ['remoting_multi_process == 1', {
211 'defines': [
212 'REMOTING_MULTI_PROCESS',
213 ],
214 }],
207 ], 215 ],
208 }, 216 },
209 217
210 'conditions': [ 218 'conditions': [
211 ['OS=="linux"', { 219 ['OS=="linux"', {
212 'targets': [ 220 'targets': [
213 # Linux breakpad processing 221 # Linux breakpad processing
214 { 222 {
215 'target_name': 'remoting_linux_symbols', 223 'target_name': 'remoting_linux_symbols',
216 'type': 'none', 224 'type': 'none',
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 ], 598 ],
591 'sources': [ 599 'sources': [
592 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_service_version.rc', 600 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_service_version.rc',
593 'base/scoped_sc_handle_win.h', 601 'base/scoped_sc_handle_win.h',
594 'host/branding.cc', 602 'host/branding.cc',
595 'host/branding.h', 603 'host/branding.h',
596 'host/chromoting_messages.cc', 604 'host/chromoting_messages.cc',
597 'host/chromoting_messages.h', 605 'host/chromoting_messages.h',
598 'host/constants.h', 606 'host/constants.h',
599 'host/constants_win.cc', 607 'host/constants_win.cc',
608 'host/daemon_process.cc',
609 'host/daemon_process.h',
610 'host/daemon_process_win.cc',
600 'host/sas_injector.h', 611 'host/sas_injector.h',
601 'host/sas_injector_win.cc', 612 'host/sas_injector_win.cc',
602 'host/usage_stats_consent.h', 613 'host/usage_stats_consent.h',
603 'host/usage_stats_consent_win.cc', 614 'host/usage_stats_consent_win.cc',
604 'host/win/host_service.cc', 615 'host/win/host_service.cc',
605 'host/win/host_service.h', 616 'host/win/host_service.h',
606 'host/win/host_service.rc', 617 'host/win/host_service.rc',
607 'host/win/host_service_resource.h', 618 'host/win/host_service_resource.h',
608 'host/win/launch_process_with_token.cc', 619 'host/win/launch_process_with_token.cc',
609 'host/win/launch_process_with_token.h', 620 'host/win/launch_process_with_token.h',
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1826 '../base/allocator/allocator.gyp:allocator', 1837 '../base/allocator/allocator.gyp:allocator',
1827 ], 1838 ],
1828 }, 1839 },
1829 ], 1840 ],
1830 ], 1841 ],
1831 }], 1842 }],
1832 ], # end of 'conditions' 1843 ], # end of 'conditions'
1833 }, # end of target 'remoting_unittests' 1844 }, # end of target 'remoting_unittests'
1834 ], # end of targets 1845 ], # end of targets
1835 } 1846 }
OLDNEW
« no previous file with comments | « 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