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

Side by Side Diff: cloud_print/cloud_print.gyp

Issue 177353002: Add use_allocator instead of linux_use_tcmalloc to switch the allocator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 9 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 | « chromeos/chromeos.gyp ('k') | components/components_tests.gyp » ('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 (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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cloud_print', 10 'target_name': 'cloud_print',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 ['OS=="win"', { 45 ['OS=="win"', {
46 'sources': [ 46 'sources': [
47 'service/win/service_ipc_unittest.cc', 47 'service/win/service_ipc_unittest.cc',
48 'virtual_driver/win/port_monitor/port_monitor_unittest.cc', 48 'virtual_driver/win/port_monitor/port_monitor_unittest.cc',
49 ], 49 ],
50 'dependencies': [ 50 'dependencies': [
51 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', 51 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib',
52 ], 52 ],
53 }], 53 }],
54 # See http://crbug.com/162998#c4 for why this is needed. 54 # See http://crbug.com/162998#c4 for why this is needed.
55 ['OS=="linux" and linux_use_tcmalloc==1', { 55 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
56 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', {
56 'dependencies': [ 57 'dependencies': [
57 '../base/allocator/allocator.gyp:allocator', 58 '../base/allocator/allocator.gyp:allocator',
58 ], 59 ],
59 }], 60 }],
60 ], 61 ],
61 'msvs_settings': { 62 'msvs_settings': {
62 'VCLinkerTool': { 63 'VCLinkerTool': {
63 'AdditionalDependencies': [ 64 'AdditionalDependencies': [
64 'secur32.lib', 65 'secur32.lib',
65 ], 66 ],
66 }, 67 },
67 }, 68 },
68 }, 69 },
69 ], 70 ],
70 } 71 }
OLDNEW
« no previous file with comments | « chromeos/chromeos.gyp ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698