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

Side by Side Diff: base/base.gypi

Issue 660118: Merge the LINUX_TC_MALLOC #define with the existing TC_MALLOC #define.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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 | « no previous file | base/leak_annotations.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 ], 359 ],
360 }, 360 },
361 # Conditions that are not relevant for Win64 build 361 # Conditions that are not relevant for Win64 build
362 'conditions': [ 362 'conditions': [
363 [ 'OS == "linux" or OS == "freebsd"', { 363 [ 'OS == "linux" or OS == "freebsd"', {
364 'conditions': [ 364 'conditions': [
365 [ 'chromeos==1', { 365 [ 'chromeos==1', {
366 'sources/': [ ['include', '_chromeos\\.cc$'] ] 366 'sources/': [ ['include', '_chromeos\\.cc$'] ]
367 }, 367 },
368 ], 368 ],
369 [ 'linux_use_tcmalloc==1', { 369 [ 'linux_use_tcmalloc==0', {
370 'defines': [ 370 'defines': [
371 'LINUX_USE_TCMALLOC', 371 'NO_TCMALLOC',
372 ], 372 ],
373 'direct_dependent_settings': { 373 'direct_dependent_settings': {
374 'defines': [ 374 'defines': [
375 'LINUX_USE_TCMALLOC', 375 'NO_TCMALLOC',
376 ], 376 ],
377 }, 377 },
378 }, 378 },
379 ], 379 ],
380 [ 'OS == "linux"', { 380 [ 'OS == "linux"', {
381 'link_settings': { 381 'link_settings': {
382 'libraries': [ 382 'libraries': [
383 # We need rt for clock_gettime(). 383 # We need rt for clock_gettime().
384 '-lrt', 384 '-lrt',
385 # For 'native_library_linux.cc' 385 # For 'native_library_linux.cc'
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'third_party/xdg_mime/xdgmimemagic.c', 624 'third_party/xdg_mime/xdgmimemagic.c',
625 'third_party/xdg_mime/xdgmimemagic.h', 625 'third_party/xdg_mime/xdgmimemagic.h',
626 'third_party/xdg_mime/xdgmimeparent.c', 626 'third_party/xdg_mime/xdgmimeparent.c',
627 'third_party/xdg_mime/xdgmimeparent.h', 627 'third_party/xdg_mime/xdgmimeparent.h',
628 ], 628 ],
629 }, 629 },
630 ], 630 ],
631 }], 631 }],
632 ], 632 ],
633 } 633 }
OLDNEW
« no previous file with comments | « no previous file | base/leak_annotations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698