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

Side by Side Diff: chrome/chrome.gyp

Issue 386016: Experiment: enable TCMalloc on Linux by default. (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 | « build/common.gypi ('k') | webkit/tools/test_shell/test_shell.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) 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 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 3555 matching lines...) Expand 10 before | Expand all | Expand 10 after
3566 'tools/build/linux/sed.sh', 3566 'tools/build/linux/sed.sh',
3567 'app/resources/manpage.1.in', 3567 'app/resources/manpage.1.in',
3568 '<@(_outputs)', 3568 '<@(_outputs)',
3569 '-e', 's/@@NAME@@/<(name)/', 3569 '-e', 's/@@NAME@@/<(name)/',
3570 '-e', 's/@@FILENAME@@/<(filename)/', 3570 '-e', 's/@@FILENAME@@/<(filename)/',
3571 '-e', 's/@@CONFDIR@@/<(confdir)/', 3571 '-e', 's/@@CONFDIR@@/<(confdir)/',
3572 ], 3572 ],
3573 'message': 'Generating manpage' 3573 'message': 'Generating manpage'
3574 }, 3574 },
3575 ], 3575 ],
3576 'conditions': [
3577 [ 'linux_use_tcmalloc==1', {
3578 'dependencies': [
3579 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
3580 ],
3581 },
3582 ],
3583 ],
3576 'dependencies': [ 3584 'dependencies': [
3577 # On Linux, link the dependencies (libraries) that make up actual 3585 # On Linux, link the dependencies (libraries) that make up actual
3578 # Chromium functionality directly into the executable. 3586 # Chromium functionality directly into the executable.
3579 '<@(chromium_dependencies)', 3587 '<@(chromium_dependencies)',
3580 # Needed for chrome_dll_main.cc #include of gtk/gtk.h 3588 # Needed for chrome_dll_main.cc #include of gtk/gtk.h
3581 '../build/linux/system.gyp:gtk', 3589 '../build/linux/system.gyp:gtk',
3582 ], 3590 ],
3583 'sources': [ 3591 'sources': [
3584 'app/chrome_dll_main.cc', 3592 'app/chrome_dll_main.cc',
3585 'app/chrome_dll_resource.h', 3593 'app/chrome_dll_resource.h',
(...skipping 3466 matching lines...) Expand 10 before | Expand all | Expand 10 after
7052 ] 7060 ]
7053 }], 7061 }],
7054 ], # 'conditions' 7062 ], # 'conditions'
7055 } 7063 }
7056 7064
7057 # Local Variables: 7065 # Local Variables:
7058 # tab-width:2 7066 # tab-width:2
7059 # indent-tabs-mode:nil 7067 # indent-tabs-mode:nil
7060 # End: 7068 # End:
7061 # vim: set expandtab tabstop=2 shiftwidth=2: 7069 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698