diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-21 07:03:50 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-21 07:03:50 +0000 |
commit | 3498bb4642c3b2ec841e7464ca35db3eb48eb1c0 (patch) | |
tree | 9979a7fb17f4671d4e00f5f57b6927f4bf762356 /build | |
parent | 65041fa2a7d79cbd289d6bfa05a55bfb32ec4fa3 (diff) | |
download | chromium_src-3498bb4642c3b2ec841e7464ca35db3eb48eb1c0.zip chromium_src-3498bb4642c3b2ec841e7464ca35db3eb48eb1c0.tar.gz chromium_src-3498bb4642c3b2ec841e7464ca35db3eb48eb1c0.tar.bz2 |
Linux: Add libunwind as a dependency of tcmalloc in 64 bit mode.
Based on willchan's patch here: http://codereview.chromium.org/2109009/show
BUG=40149
TEST=none
TBR=willchan
Review URL: http://codereview.chromium.org/2137010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/all.gyp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/build/all.gyp b/build/all.gyp index 8e7c5de..a77e2c0 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -1,4 +1,4 @@ -# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Copyright (c) 2010 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -83,6 +83,13 @@ '../tools/xdisplaycheck/xdisplaycheck.gyp:*', '../net/third_party/nss/nss.gyp:*', ], + 'conditions': [ + ['target_arch=="x64"', { + 'dependencies': [ + '../third_party/libunwind/libunwind.gyp:*', + ], + }], + ], }], ['OS=="win"', { 'conditions': [ |