| 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 3562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3573 'tools/build/linux/sed.sh', | 3573 'tools/build/linux/sed.sh', |
| 3574 'app/resources/manpage.1.in', | 3574 'app/resources/manpage.1.in', |
| 3575 '<@(_outputs)', | 3575 '<@(_outputs)', |
| 3576 '-e', 's/@@NAME@@/<(name)/', | 3576 '-e', 's/@@NAME@@/<(name)/', |
| 3577 '-e', 's/@@FILENAME@@/<(filename)/', | 3577 '-e', 's/@@FILENAME@@/<(filename)/', |
| 3578 '-e', 's/@@CONFDIR@@/<(confdir)/', | 3578 '-e', 's/@@CONFDIR@@/<(confdir)/', |
| 3579 ], | 3579 ], |
| 3580 'message': 'Generating manpage' | 3580 'message': 'Generating manpage' |
| 3581 }, | 3581 }, |
| 3582 ], | 3582 ], |
| 3583 'conditions': [ |
| 3584 [ 'linux_use_tcmalloc==1', { |
| 3585 'dependencies': [ |
| 3586 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', |
| 3587 ], |
| 3588 }, |
| 3589 ], |
| 3590 ], |
| 3583 'dependencies': [ | 3591 'dependencies': [ |
| 3584 # On Linux, link the dependencies (libraries) that make up actual | 3592 # On Linux, link the dependencies (libraries) that make up actual |
| 3585 # Chromium functionality directly into the executable. | 3593 # Chromium functionality directly into the executable. |
| 3586 '<@(chromium_dependencies)', | 3594 '<@(chromium_dependencies)', |
| 3587 # Needed for chrome_dll_main.cc #include of gtk/gtk.h | 3595 # Needed for chrome_dll_main.cc #include of gtk/gtk.h |
| 3588 '../build/linux/system.gyp:gtk', | 3596 '../build/linux/system.gyp:gtk', |
| 3589 ], | 3597 ], |
| 3590 'sources': [ | 3598 'sources': [ |
| 3591 'app/chrome_dll_main.cc', | 3599 'app/chrome_dll_main.cc', |
| 3592 'app/chrome_dll_resource.h', | 3600 'app/chrome_dll_resource.h', |
| (...skipping 3374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6967 ] | 6975 ] |
| 6968 }], | 6976 }], |
| 6969 ], # 'conditions' | 6977 ], # 'conditions' |
| 6970 } | 6978 } |
| 6971 | 6979 |
| 6972 # Local Variables: | 6980 # Local Variables: |
| 6973 # tab-width:2 | 6981 # tab-width:2 |
| 6974 # indent-tabs-mode:nil | 6982 # indent-tabs-mode:nil |
| 6975 # End: | 6983 # End: |
| 6976 # vim: set expandtab tabstop=2 shiftwidth=2: | 6984 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |