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

Side by Side Diff: remoting/remoting_host_linux.gypi

Issue 258433005: Remove {linux|android}_use_tcmalloc and switch to use_allocator in Chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 7 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/remoting_host.gypi ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « remoting/remoting_host.gypi ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698