OLD | NEW |
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 Loading... |
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 ], | |
3584 'dependencies': [ | 3576 'dependencies': [ |
3585 # On Linux, link the dependencies (libraries) that make up actual | 3577 # On Linux, link the dependencies (libraries) that make up actual |
3586 # Chromium functionality directly into the executable. | 3578 # Chromium functionality directly into the executable. |
3587 '<@(chromium_dependencies)', | 3579 '<@(chromium_dependencies)', |
3588 # Needed for chrome_dll_main.cc #include of gtk/gtk.h | 3580 # Needed for chrome_dll_main.cc #include of gtk/gtk.h |
3589 '../build/linux/system.gyp:gtk', | 3581 '../build/linux/system.gyp:gtk', |
3590 ], | 3582 ], |
3591 'sources': [ | 3583 'sources': [ |
3592 'app/chrome_dll_main.cc', | 3584 'app/chrome_dll_main.cc', |
3593 'app/chrome_dll_resource.h', | 3585 'app/chrome_dll_resource.h', |
(...skipping 3466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7060 ] | 7052 ] |
7061 }], | 7053 }], |
7062 ], # 'conditions' | 7054 ], # 'conditions' |
7063 } | 7055 } |
7064 | 7056 |
7065 # Local Variables: | 7057 # Local Variables: |
7066 # tab-width:2 | 7058 # tab-width:2 |
7067 # indent-tabs-mode:nil | 7059 # indent-tabs-mode:nil |
7068 # End: | 7060 # End: |
7069 # vim: set expandtab tabstop=2 shiftwidth=2: | 7061 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |