diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 04:42:50 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 04:42:50 +0000 |
commit | 328efb27fa84be07fc3847d188d589b14e2cf246 (patch) | |
tree | cb1169a2283d7343bf4a59056908bd7abb4c33d6 /breakpad | |
parent | b06c509558c27831efafbf43291e365e7a4a91b9 (diff) | |
download | chromium_src-328efb27fa84be07fc3847d188d589b14e2cf246.zip chromium_src-328efb27fa84be07fc3847d188d589b14e2cf246.tar.gz chromium_src-328efb27fa84be07fc3847d188d589b14e2cf246.tar.bz2 |
Build fix: Building all targets with 32-bit config would fail.
See comment in the patch.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/breakpad.gyp | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 3760eca..40bc246 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -283,19 +283,22 @@ '..', ], }, - { - 'target_name': 'symupload', - 'type': 'executable', - - 'sources': [ - 'src/tools/linux/symupload/sym_upload.cc', - 'src/common/linux/http_upload.cc', - ], - - 'include_dirs': [ - 'src', - ], - }, +# This needs libcurl, which means that it cannot be built with the default +# configuration as we don't have 32-bit libcurl. Uncomment this and use +# BUILDTYPE=Tool to build with the default host config. +# { +# 'target_name': 'symupload', +# 'type': 'executable', +# +# 'sources': [ +# 'src/tools/linux/symupload/sym_upload.cc', +# 'src/common/linux/http_upload.cc', +# ], +# +# 'include_dirs': [ +# 'src', +# ], +# }, { 'target_name': 'dump_syms', 'type': 'executable', |