diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 22:28:32 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 22:28:32 +0000 |
commit | 50462ecbd8980074c460af0f32b5fc6449df8b87 (patch) | |
tree | c5ba44ae61c383485c105462e273517ace3ff68f /build | |
parent | 24b0f177b1a453bae38cdda6c4e07a4320a3e22b (diff) | |
download | chromium_src-50462ecbd8980074c460af0f32b5fc6449df8b87.zip chromium_src-50462ecbd8980074c460af0f32b5fc6449df8b87.tar.gz chromium_src-50462ecbd8980074c460af0f32b5fc6449df8b87.tar.bz2 |
Use refactored filename rules in net.gyp.
build/common.gypi has some general patterns for filenames on platforms,
e.g. "don't build _win.cc on non-Windows", so we don't need to duplicate
them here.
While I'm at it, add the FreeBSD/OpenBSD tests as well, since
that was what prompted this change.
Review URL: http://codereview.chromium.org/558034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 76af9cc..e8fd690 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1048,7 +1048,7 @@ ], 'conditions': [ ['OS!="win"', { - 'sources/': [ ['exclude', '_win\\.cc$'], + 'sources/': [ ['exclude', '_win(_unittest)?\\.cc$'], ['exclude', '/win/'], ['exclude', '/win_[^/]*\\.cc$'] ], }], |