GOTO gets a bad rap, and its obvious that it should only be used when there is no other way.
The infamous GOTO is JMP in ASM and pretty much required. Of course, ancient BASIC required GOTO to get anything done. And probably popularized the name ( as opposed to "jump" ).
In C, you can still see it a lot in low-level network stuff. Some very popular introductory books used GOTO everywhere.
Obviously, GOTO isn't an elegant solution, and I would stay away from it when necessary.
When is a good time to use GOTO? When you have no other choice. In most modern languages, you do.
In terms of why Google added it, I would just say they were thinking "why not?" Its better to have the functionality in case it is needed, and just never use it.
If they didn't add GOTO for that reason, then it was added for a specific reason. GOTO can be useful, but most modern programming languages have better ways for breaking out of nested loops (ex. break) for example, or going to a cleanup section at the end of a function (ex. try/catch). All in all, try not to use it unless you need to, and you normally do not need to.
gotois useful in certain cases. Read after studying @Kissaki's answer. – kostix Jun 16 '12 at 18:17