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

Side by Side Diff: crypto/crypto.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 | « courgette/courgette.gyp ('k') | device/device_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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Put all transitive dependencies for Windows HMAC here. 8 # Put all transitive dependencies for Windows HMAC here.
9 # This is required so that we can build them for nacl win64. 9 # This is required so that we can build them for nacl win64.
10 'hmac_win64_related_sources': [ 10 'hmac_win64_related_sources': [
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 'crypto', 270 'crypto',
271 '../base/base.gyp:base', 271 '../base/base.gyp:base',
272 '../base/base.gyp:run_all_unittests', 272 '../base/base.gyp:run_all_unittests',
273 '../base/base.gyp:test_support_base', 273 '../base/base.gyp:test_support_base',
274 '../testing/gmock.gyp:gmock', 274 '../testing/gmock.gyp:gmock',
275 '../testing/gtest.gyp:gtest', 275 '../testing/gtest.gyp:gtest',
276 ], 276 ],
277 'conditions': [ 277 'conditions': [
278 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 278 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
279 'conditions': [ 279 'conditions': [
280 [ 'linux_use_tcmalloc==1', { 280 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
281 [ '(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
281 'dependencies': [ 282 'dependencies': [
282 '../base/allocator/allocator.gyp:allocator', 283 '../base/allocator/allocator.gyp:allocator',
283 ], 284 ],
284 }, 285 },
285 ], 286 ],
286 ], 287 ],
287 'dependencies': [ 288 'dependencies': [
288 '../build/linux/system.gyp:ssl', 289 '../build/linux/system.gyp:ssl',
289 ], 290 ],
290 }, { # os_posix != 1 or OS == "mac" or OS == "android" or OS == "ios" 291 }, { # os_posix != 1 or OS == "mac" or OS == "android" or OS == "ios"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'configurations': { 344 'configurations': {
344 'Common_Base': { 345 'Common_Base': {
345 'msvs_target_platform': 'x64', 346 'msvs_target_platform': 'x64',
346 }, 347 },
347 }, 348 },
348 }, 349 },
349 ], 350 ],
350 }], 351 }],
351 ], 352 ],
352 } 353 }
OLDNEW
« no previous file with comments | « courgette/courgette.gyp ('k') | device/device_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698