OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'conditions': [ | 6 'conditions': [ |
7 ['OS=="linux" and branding=="Chrome" and enable_remoting_host==1', { | 7 ['OS=="linux" and branding=="Chrome" and enable_remoting_host==1', { |
8 'variables': { | 8 'variables': { |
9 'build_deb_script': 'host/installer/linux/build-deb.sh', | 9 'build_deb_script': 'host/installer/linux/build-deb.sh', |
10 'deb_filename': 'host/installer/<!(["<(build_deb_script)", "-p", "-s", "
<(DEPTH)"])', | 10 'deb_filename': 'host/installer/<!(["<(build_deb_script)", "-p", "-s", "
<(DEPTH)"])', |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'type': 'executable', | 121 'type': 'executable', |
122 'dependencies': [ | 122 'dependencies': [ |
123 'remoting_host_setup_base', | 123 'remoting_host_setup_base', |
124 ], | 124 ], |
125 'sources': [ | 125 'sources': [ |
126 'host/setup/host_starter.cc', | 126 'host/setup/host_starter.cc', |
127 'host/setup/host_starter.h', | 127 'host/setup/host_starter.h', |
128 'host/setup/start_host.cc', | 128 'host/setup/start_host.cc', |
129 ], | 129 ], |
130 'conditions': [ | 130 'conditions': [ |
131 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 131 ['use_allocator!="none"', { |
132 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (
use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
133 'dependencies': [ | 132 'dependencies': [ |
134 '../base/allocator/allocator.gyp:allocator', | 133 '../base/allocator/allocator.gyp:allocator', |
135 ], | 134 ], |
136 }], | 135 }], |
137 ], | 136 ], |
138 }, # end of target 'remoting_start_host' | 137 }, # end of target 'remoting_start_host' |
139 ], # end of 'targets' | 138 ], # end of 'targets' |
140 }], # 'OS=="linux"' | 139 }], # 'OS=="linux"' |
141 | 140 |
142 ], # end of 'conditions' | 141 ], # end of 'conditions' |
143 } | 142 } |
OLD | NEW |