diff options
author | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-04 14:19:41 +0000 |
---|---|---|
committer | robert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-04 14:19:41 +0000 |
commit | af8243689d57c31fe13fccce90197a7fe3e868b8 (patch) | |
tree | 3465d17cf4285cba91fae4d1b107d170321d3580 /base/base.gypi | |
parent | ddd3eeb47ce0ec6416746b4338d2ffdfbb409442 (diff) | |
download | chromium_src-af8243689d57c31fe13fccce90197a7fe3e868b8.zip chromium_src-af8243689d57c31fe13fccce90197a7fe3e868b8.tar.gz chromium_src-af8243689d57c31fe13fccce90197a7fe3e868b8.tar.bz2 |
use os_bsd and OS_BSD and add some OS_FREEBSD conditions
this change is the first part of the FreeBSD support
BUG=
TEST=
Review URL: http://codereview.chromium.org/8773051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112936 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gypi')
-rw-r--r-- | base/base.gypi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/base/base.gypi b/base/base.gypi index c67575a..6d6f0d7 100644 --- a/base/base.gypi +++ b/base/base.gypi @@ -221,6 +221,7 @@ 'process_posix.cc', 'process_util.cc', 'process_util.h', + 'process_util_freebsd.cc', 'process_util_linux.cc', 'process_util_mac.mm', 'process_util_openbsd.cc', @@ -444,7 +445,7 @@ [ 'exclude', '^message_pump_x\\.cc$',], ], }], - [ 'OS != "linux" and OS != "openbsd"', { + [ 'OS != "linux" and os_bsd != 1', { 'sources!': [ # Not automatically excluded by the *linux.cc rules. 'linux_util.cc', @@ -522,7 +523,7 @@ ['exclude', '^sys_string_conversions_posix\\.cc$'], ], }], - [ 'OS == "openbsd"', { + [ 'os_bsd==1', { 'sources/': [ ['exclude', '^files/file_path_watcher_linux\\.cc$'], ['exclude', '^files/file_path_watcher_stub\\.cc$'], |