summaryrefslogtreecommitdiffstats
path: root/third_party/libpng
diff options
context:
space:
mode:
authorcevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-09 05:36:28 +0000
committercevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-09 05:36:28 +0000
commitf6336270df808b7a25bf46b8d2cc039fd567e438 (patch)
tree4daa862b0140f70d46d875291687db5deb4179d3 /third_party/libpng
parentc79991f43c51b0390a58fdd712a0146c767d221f (diff)
downloadchromium_src-f6336270df808b7a25bf46b8d2cc039fd567e438.zip
chromium_src-f6336270df808b7a25bf46b8d2cc039fd567e438.tar.gz
chromium_src-f6336270df808b7a25bf46b8d2cc039fd567e438.tar.bz2
Don't use system libpng by default. It causes security maintenance problems
for ChromeOS. It's worth noting that we also don't use the system library for many other important components such as libxml. BUG=112822 R=wad,abarth Review URL: https://chromiumcodereview.appspot.com/9365007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libpng')
-rw-r--r--third_party/libpng/libpng.gyp5
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/libpng/libpng.gyp b/third_party/libpng/libpng.gyp
index 5325310..978877e 100644
--- a/third_party/libpng/libpng.gyp
+++ b/third_party/libpng/libpng.gyp
@@ -6,8 +6,9 @@
'variables': {
'conditions': [
[ 'os_posix == 1 and OS != "mac" and OS != "android"', {
- # Link to system .so since we already use it due to GTK.
- 'use_system_libpng%': 1,
+ # Maybe link to system .so once the security concerns are thought
+ # through, since we already use it due to GTK.
+ 'use_system_libpng%': 0,
}, { # os_posix != 1 or OS == "mac"
'use_system_libpng%': 0,
}],