diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 21:38:08 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 21:38:08 +0000 |
commit | e7180497f2cb59414d06b944ccea5ceffd3c8e51 (patch) | |
tree | 965dc218fc00409452b0e047bf948ff5a0f32f4c /tools | |
parent | 14780874d5fd73377756c27c96f2716a58423a7e (diff) | |
download | chromium_src-e7180497f2cb59414d06b944ccea5ceffd3c8e51.zip chromium_src-e7180497f2cb59414d06b944ccea5ceffd3c8e51.tar.gz chromium_src-e7180497f2cb59414d06b944ccea5ceffd3c8e51.tar.bz2 |
fix build on windows
we don't actually want to run this code on windows.
TBR=evanm
Review URL: http://codereview.chromium.org/18171
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8223 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/grit/grit/tool/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/grit/grit/tool/build.py b/tools/grit/grit/tool/build.py index e2115ee..63ade73 100644 --- a/tools/grit/grit/tool/build.py +++ b/tools/grit/grit/tool/build.py @@ -163,6 +163,7 @@ are exported to translation interchange files (e.g. XMB files), etc. if output.GetType() == 'data_package' and sys.platform != 'linux2': f = open(output.GetOutputFilename(), 'wb') f.close() + continue # Microsoft's RC compiler can only deal with single-byte or double-byte # files (no UTF-8), so we make all RC files UTF-16 to support all |