diff options
author | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-10 00:53:59 +0000 |
---|---|---|
committer | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-10 00:53:59 +0000 |
commit | 1ac60480de8f8d3566387a91ecb6ac9b6169ab1f (patch) | |
tree | 4db53edaf4fa6a430e941398fd587bd56ec3a414 /build | |
parent | 16aef84a15e51aaaf4d1451c80859012a51bb966 (diff) | |
download | chromium_src-1ac60480de8f8d3566387a91ecb6ac9b6169ab1f.zip chromium_src-1ac60480de8f8d3566387a91ecb6ac9b6169ab1f.tar.gz chromium_src-1ac60480de8f8d3566387a91ecb6ac9b6169ab1f.tar.bz2 |
Revert 34195 - Make sure the 'use_system_*' variables are actually visible in the relevant gyp files.
BUG=29738
Review URL: http://codereview.chromium.org/479005
TBR=mmoss@google.com
Example choke:
http://build.chromium.org/buildbot/waterfall/builders/Linux%20Perf/builds/4382/steps/compile/logs/stdio
Compiling /b/slave/chromium-rel-linux-hardy/build/src/sconsbuild/Release/obj/chrome/unit_tests/common/bzip2_unittest.o
/b/slave/chromium-rel-linux-hardy/build/src/chrome/common/bzip2_unittest.cc:6:19: error: bzlib.h: No such file or directory
Review URL: http://codereview.chromium.org/484003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34213 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 14 | ||||
-rwxr-xr-x | build/install-build-deps.sh | 6 | ||||
-rw-r--r-- | build/linux/system.gyp | 14 |
3 files changed, 20 insertions, 14 deletions
diff --git a/build/common.gypi b/build/common.gypi index ece3401..0f42c37 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -44,6 +44,20 @@ # hosts should pass an explicit target_arch to gyp. 'target_arch%': '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/arm.*/arm/")', + + # On Linux, we use the system versions of several libraries. We end + # up pulling these in as .so's anyway since they are already in our + # transitive closure due to GTK. + 'use_system_zlib': 1, + 'use_system_libjpeg': 1, + 'use_system_bzip2': 1, + 'use_system_libpng': 1, + 'use_system_libjpeg': 1, + 'use_system_libxslt': 1, + + # We use our own copy of libssl, although we still need to link + # against the rest of NSS. + 'use_system_ssl': 0, }, { # OS!="linux" 'target_arch%': 'ia32', }], diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index f675db7..02bff1d 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -111,9 +111,9 @@ fi # Packages need for development dev_list="apache2 bison fakeroot flex g++ g++-multilib gperf libapache2-mod-php5 libasound2-dev libcairo2-dev libgconf2-dev libglib2.0-dev - libgtk2.0-dev libjpeg62-dev libnspr4-dev libnss3-dev libsqlite3-dev - libxslt1-dev lighttpd msttcorefonts patch perl php5-cgi pkg-config - python rpm subversion wdiff" + libgtk2.0-dev libnspr4-dev libnss3-dev libsqlite3-dev lighttpd + msttcorefonts patch perl php5-cgi pkg-config python rpm subversion + wdiff" # Full list of required run-time libraries lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libexpat1 diff --git a/build/linux/system.gyp b/build/linux/system.gyp index c51d0a7..a707343 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -13,19 +13,11 @@ 'pkg-config': 'pkg-config' }, }], - [ 'OS=="linux"', { - 'variables': { - # We use our own copy of libssl, although we still need to link against - # the rest of NSS. - 'use_system_ssl%': 0, - }, - }, { # OS!="linux" - 'variables': { - 'use_system_ssl%': 1, - }, - }], ], + 'variables': { + 'use_system_ssl%': 1, + }, 'targets': [ { |