I hate to create a new answer for this, but I basically want to put both Brian Ensink and ChrisW's answer together:
First off, as Brian mentioned, your compile times will skyrocket as it's including tonnes of files every time it compiles. Luckily it looks like it's standard includes, so they shouldn't be changing all that often, but it'll still suck.
You can mitigate this by buildnig a precompiled header that'll only be re-compiled when you do a full rebuild, toast the PCH file, or change something included in it - but that's why PCH files normally only have system wide includes, or things that don't change that often.