Chromium Code Reviews| Index: third_party/zlib/zlib.gyp |
| =================================================================== |
| --- third_party/zlib/zlib.gyp (revision 47284) |
| +++ third_party/zlib/zlib.gyp (working copy) |
| @@ -5,10 +5,10 @@ |
| { |
| 'variables': { |
| 'conditions': [ |
| - [ 'OS=="linux"', { |
| + [ 'OS=="linux" or OS=="freebsd"', { |
|
Evan Martin
2010/05/14 21:24:17
did you mean to include openbsd here?
Peter Valchev
2010/05/14 21:41:22
I purposefully did not, because using the system z
|
| # Link to system .so since we already use it due to GTK. |
| 'use_system_zlib%': 1, |
| - }, { # OS!="linux" |
| + }, { # OS!="linux" and OS!="freebsd" |
| 'use_system_zlib%': 0, |
| }], |
| ], |