diff options
author | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 23:54:54 +0000 |
---|---|---|
committer | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 23:54:54 +0000 |
commit | 8d5788267bcd591842932fd8761813c7fac3d987 (patch) | |
tree | f585dbb8cc13a244e32cc76ee4a24e89d33bab57 /base/base.gyp | |
parent | 93f0c77c33ac138c30a019a6c67de53d23810db0 (diff) | |
download | chromium_src-8d5788267bcd591842932fd8761813c7fac3d987.zip chromium_src-8d5788267bcd591842932fd8761813c7fac3d987.tar.gz chromium_src-8d5788267bcd591842932fd8761813c7fac3d987.tar.bz2 |
OpenBSD/FreeBSD ifdefs and GYP changes for base/
Based on original work by Sprewell and Ben Laurie on FreeBSD port
Review URL: http://codereview.chromium.org/548129
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37063 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gyp')
-rw-r--r-- | base/base.gyp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/base/base.gyp b/base/base.gyp index d59ebc1..9a139d0 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -37,7 +37,7 @@ 'i18n/word_iterator.h', ], 'conditions': [ - ['OS == "linux" or OS == "freebsd"', { + ['OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 'dependencies': [ '../build/linux/system.gyp:gtk', ], @@ -157,7 +157,7 @@ '../testing/gtest.gyp:gtest', ], 'conditions': [ - ['OS == "linux" or OS == "freebsd"', { + ['OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 'sources!': [ 'file_version_info_unittest.cc', 'worker_pool_linux_unittest.cc', @@ -175,7 +175,7 @@ '../build/linux/system.gyp:nss', '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', ], - }, { # OS != "linux" and OS != "freebsd" + }, { # OS != "linux" and OS != "freebsd" and OS != "openbsd" 'sources!': [ 'message_pump_glib_unittest.cc', ] @@ -238,7 +238,7 @@ ], }, 'conditions': [ - ['OS == "linux" or OS == "freebsd"', { + ['OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 'dependencies': [ # Needed to handle the #include chain: # base/test/perf_test_suite.h @@ -267,7 +267,7 @@ }, ], }], - [ 'OS == "linux" or OS == "freebsd"', { + [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 'targets': [ { 'target_name': 'linux_versioninfo', |