Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 'remoting_multi_process%': 0, | |
|
Sergey Ulanov
2012/07/30 19:50:04
Nit: Kerry recently added remoting_audio variable
alexeypa (please no reviews)
2012/07/30 21:50:03
Will do.
| |
| 8 | |
| 7 # TODO(dmaclach): can we pick this up some other way? Right now it's | 9 # TODO(dmaclach): can we pick this up some other way? Right now it's |
| 8 # duplicated from chrome.gyp | 10 # duplicated from chrome.gyp |
| 9 'chromium_code': 1, | 11 'chromium_code': 1, |
| 10 # Use consistent strings across all platforms. Note that the plugin name | 12 # Use consistent strings across all platforms. Note that the plugin name |
| 11 # is brand-dependent and is defined further down. | 13 # is brand-dependent and is defined further down. |
| 12 # Must match host/plugin/constants.h | 14 # Must match host/plugin/constants.h |
| 13 'host_plugin_mime_type': 'application/vnd.chromium.remoting-host', | 15 'host_plugin_mime_type': 'application/vnd.chromium.remoting-host', |
| 14 'host_plugin_description': 'Allow another user to access your computer secur ely over the Internet.', | 16 'host_plugin_description': 'Allow another user to access your computer secur ely over the Internet.', |
| 15 | 17 |
| 16 # The version is composed from major & minor versions specific to remoting | 18 # The version is composed from major & minor versions specific to remoting |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 193 | 195 |
| 194 'target_defaults': { | 196 'target_defaults': { |
| 195 'defines': [ | 197 'defines': [ |
| 196 ], | 198 ], |
| 197 'include_dirs': [ | 199 'include_dirs': [ |
| 198 '..', # Root of Chrome checkout | 200 '..', # Root of Chrome checkout |
| 199 ], | 201 ], |
| 200 }, | 202 }, |
| 201 | 203 |
| 202 'conditions': [ | 204 'conditions': [ |
| 205 ['remoting_multi_process==1', { | |
| 206 'target_defaults': { | |
| 207 'defines': [ | |
| 208 'REMOTING_MULTI_PROCESS', | |
| 209 ], | |
| 210 }, | |
| 211 }], | |
| 203 ['OS=="linux"', { | 212 ['OS=="linux"', { |
| 204 'targets': [ | 213 'targets': [ |
| 205 # Linux breakpad processing | 214 # Linux breakpad processing |
| 206 { | 215 { |
| 207 'target_name': 'remoting_linux_symbols', | 216 'target_name': 'remoting_linux_symbols', |
| 208 'type': 'none', | 217 'type': 'none', |
| 209 'conditions': [ | 218 'conditions': [ |
| 210 ['linux_dump_symbols==1', { | 219 ['linux_dump_symbols==1', { |
| 211 'actions': [ | 220 'actions': [ |
| 212 { | 221 { |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 565 'remoting_version_resources', | 574 'remoting_version_resources', |
| 566 ], | 575 ], |
| 567 'sources': [ | 576 'sources': [ |
| 568 'base/scoped_sc_handle_win.h', | 577 'base/scoped_sc_handle_win.h', |
| 569 'host/branding.cc', | 578 'host/branding.cc', |
| 570 'host/branding.h', | 579 'host/branding.h', |
| 571 'host/chromoting_messages.cc', | 580 'host/chromoting_messages.cc', |
| 572 'host/chromoting_messages.h', | 581 'host/chromoting_messages.h', |
| 573 'host/constants.h', | 582 'host/constants.h', |
| 574 'host/constants_win.cc', | 583 'host/constants_win.cc', |
| 584 'host/daemon_process.cc', | |
| 585 'host/daemon_process.h', | |
| 586 'host/daemon_process_win.cc', | |
| 575 'host/host_service.rc', | 587 'host/host_service.rc', |
| 576 'host/host_service_resource.h', | 588 'host/host_service_resource.h', |
| 577 'host/host_service_win.cc', | 589 'host/host_service_win.cc', |
| 578 'host/host_service_win.h', | 590 'host/host_service_win.h', |
| 579 'host/launch_process_in_session_win.cc', | 591 'host/launch_process_in_session_win.cc', |
| 580 'host/launch_process_in_session_win.h', | 592 'host/launch_process_in_session_win.h', |
| 581 'host/sas_injector.h', | 593 'host/sas_injector.h', |
| 582 'host/sas_injector_win.cc', | 594 'host/sas_injector_win.cc', |
| 583 'host/usage_stats_consent.h', | 595 'host/usage_stats_consent.h', |
| 584 'host/usage_stats_consent_win.cc', | 596 'host/usage_stats_consent_win.cc', |
| (...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1777 '../base/allocator/allocator.gyp:allocator', | 1789 '../base/allocator/allocator.gyp:allocator', |
| 1778 ], | 1790 ], |
| 1779 }, | 1791 }, |
| 1780 ], | 1792 ], |
| 1781 ], | 1793 ], |
| 1782 }], | 1794 }], |
| 1783 ], # end of 'conditions' | 1795 ], # end of 'conditions' |
| 1784 }, # end of target 'remoting_unittests' | 1796 }, # end of target 'remoting_unittests' |
| 1785 ], # end of targets | 1797 ], # end of targets |
| 1786 } | 1798 } |
| OLD | NEW |