summaryrefslogtreecommitdiffstats
path: root/sdch
diff options
context:
space:
mode:
authorrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-22 23:41:45 +0000
committerrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-22 23:41:45 +0000
commitc48aef9240a471aec56fd19b885c9244b9b135a9 (patch)
treeb2e796fe706ae7612a63ce017856fdcf7c0fe438 /sdch
parent7a3abb9ed28ed502708d5c0e44180be0ebdcb50b (diff)
downloadchromium_src-c48aef9240a471aec56fd19b885c9244b9b135a9.zip
chromium_src-c48aef9240a471aec56fd19b885c9244b9b135a9.tar.gz
chromium_src-c48aef9240a471aec56fd19b885c9244b9b135a9.tar.bz2
replace platform conditions with os_posix and os_bsd where applicable
this patch also adds a comment that describes why EAI_NODATA is disabled on FreeBSD BUG= TEST= TBR=wtc Review URL: http://codereview.chromium.org/8598010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sdch')
-rw-r--r--sdch/sdch.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdch/sdch.gyp b/sdch/sdch.gyp
index 82e65a1..410629f 100644
--- a/sdch/sdch.gyp
+++ b/sdch/sdch.gyp
@@ -54,7 +54,7 @@
},
'conditions': [
[ 'OS == "linux" or OS == "android"', { 'include_dirs': [ 'linux' ] } ],
- [ 'OS == "freebsd" or OS == "openbsd" or OS=="solaris"', { 'include_dirs': [ 'bsd' ] } ],
+ [ 'os_bsd==1 or OS=="solaris"', { 'include_dirs': [ 'bsd' ] } ],
[ 'OS == "mac"', { 'include_dirs': [ 'mac' ] } ],
[ 'OS == "win"', { 'include_dirs': [ 'open-vcdiff/vsprojects' ] } ],
],