diff options
author | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-23 01:37:15 +0000 |
---|---|---|
committer | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-23 01:37:15 +0000 |
commit | b05be39e20ae9d70bc54c7511d8199517294a2dd (patch) | |
tree | 24750b9f4e7ce4061740c08027cea3855572c1af /app/resources | |
parent | 53adb9a6d5c506d8df8a08adc092acd524a79753 (diff) | |
download | chromium_src-b05be39e20ae9d70bc54c7511d8199517294a2dd.zip chromium_src-b05be39e20ae9d70bc54c7511d8199517294a2dd.tar.gz chromium_src-b05be39e20ae9d70bc54c7511d8199517294a2dd.tar.bz2 |
OpenBSD/FreeBSD ifdefs and GYP changes for app/ directory
- Use OS_POSIX && !OS_MACOSX defines to capture Linux/*BSD as they
have many similarities, use other defines instead of OS_LINUX
where sensible.
Based on original work by Sprewell and Ben Laurie on FreeBSD port
Review URL: http://codereview.chromium.org/548126
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/resources')
-rw-r--r-- | app/resources/app_resources.grd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/resources/app_resources.grd b/app/resources/app_resources.grd index a0534a1..b6b3819 100644 --- a/app/resources/app_resources.grd +++ b/app/resources/app_resources.grd @@ -31,8 +31,8 @@ <include name="IDR_MINIMIZE_P" file="minimize_p.png" type="BINDATA" /> </if> - <if expr="os == 'linux2'"> - <!-- Window controls for Linux, in the style of Metacity --> + <if expr="os == 'linux2' or os == 'freebsd7' or os == 'openbsd4'"> + <!-- Window controls for Linux/BSD, in the style of Metacity --> <include name="IDR_CLOSE" file="linux_close.png" type="BINDATA" /> <include name="IDR_CLOSE_H" file="linux_close_h.png" type="BINDATA" /> <include name="IDR_CLOSE_P" file="linux_close_p.png" type="BINDATA" /> |