Use Mercurial.
Both systems will be easy, but Mercurial will be fast. Want to compare the differences between what someone else did last night and what you did last night? With SVN that's going to take a couple of seconds per file while it talks to Google's servers. With Mercurial it will be pretty much instant.
A couple of seconds per diff might not sound like a lot, but the benefits of a snappy, responsive interface will become apparent once you use a system that eliminates (most) of those pauses.
Oh, and people can fork your project without it being a huge pain in the ass. That's pretty cool too.
EDIT: Mercurial also doesn't feel the need to slap a .svn
folder in every single folder in your project. Those things are ugly (and not hidden by default on Windows, like they would be on *nix system). There will just be one .hg
folder at the root of your project, which is much cleaner.
EDIT: One more reason to use Mercurial: hg bisect
. Tracking down a bug in 10 minutes instead of 2 hours because you were able to find the exact revision that caused it is awesome. It looks like there's a Perl svn-bisect
tool but it's not in the core, and SVN's slowness in updating between revisions will make it a much longer process.