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

Side by Side Diff: base/base.gyp

Issue 390015: linux: TCMalloc-based C++ heap profiler. (Closed)
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « no previous file | build/common.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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 }, 369 },
370 # These warnings are needed for the files in third_party\dmg_fp. 370 # These warnings are needed for the files in third_party\dmg_fp.
371 'msvs_disabled_warnings': [ 371 'msvs_disabled_warnings': [
372 4244, 4554, 4018, 4102, 372 4244, 4554, 4018, 4102,
373 ], 373 ],
374 'mac_framework_dirs': [ 374 'mac_framework_dirs': [
375 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks', 375 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks',
376 ], 376 ],
377 'conditions': [ 377 'conditions': [
378 [ 'OS == "linux" or OS == "freebsd"', { 378 [ 'OS == "linux" or OS == "freebsd"', {
379 'variables' : {
380 'linux_use_tcmalloc%': 0,
381 },
382 'sources/': [ ['exclude', '_(mac|win|chromeos)\\.cc$'], 379 'sources/': [ ['exclude', '_(mac|win|chromeos)\\.cc$'],
383 ['exclude', '\\.mm?$' ] ], 380 ['exclude', '\\.mm?$' ] ],
384 'conditions': [ 381 'conditions': [
385 [ 'chromeos==1 or toolkit_views==1', { 382 [ 'chromeos==1 or toolkit_views==1', {
386 'sources/': [ ['include', '_chromeos\\.cc$'] ] 383 'sources/': [ ['include', '_chromeos\\.cc$'] ]
387 }, 384 },
388 ], 385 ],
389 [ 'linux_use_tcmalloc==1', { 386 [ 'linux_use_tcmalloc==1', {
390 'dependencies': [ 387 'dependencies': [
391 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', 388 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 ], 837 ],
841 }], 838 }],
842 ], 839 ],
843 } 840 }
844 841
845 # Local Variables: 842 # Local Variables:
846 # tab-width:2 843 # tab-width:2
847 # indent-tabs-mode:nil 844 # indent-tabs-mode:nil
848 # End: 845 # End:
849 # vim: set expandtab tabstop=2 shiftwidth=2: 846 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698