Generate output expected by 'git cl format'.

Generate the output expected by Chromium's 'git cl format' command.

1. Use "// AOM_CONFIG_H_" for the comment at the end of the header
include guard. For some reason, 'git cl format' uses only one space (as
opposed to two spaces, recommended by the Google C++ Style Guide) between
"#endif" and the "/* AOM_CONFIG_H_ */" comment.

2. Use line continuation after "#define VERSION_PACKED" and add spaces
around the '<<' and '|' operators.

Change-Id: I32a5a7e09bed019f6c9a892fb32be751a0fae977
diff --git a/build/cmake/generate_aom_config_templates.cmake b/build/cmake/generate_aom_config_templates.cmake
index a826ec0..8b8ab06 100644
--- a/build/cmake/generate_aom_config_templates.cmake
+++ b/build/cmake/generate_aom_config_templates.cmake
@@ -86,7 +86,7 @@
 foreach(aom_var ${aom_build_vars})
   file(APPEND "${aom_config_h_template}" "\#define ${aom_var} \${${aom_var}}\n")
 endforeach()
-file(APPEND "${aom_config_h_template}" "\#endif  /* AOM_CONFIG_H_ */")
+file(APPEND "${aom_config_h_template}" "\#endif  // AOM_CONFIG_H_")
 
 set(aom_asm_config_template "${AOM_CONFIG_DIR}/config/aom_config.asm.cmake")
 file(WRITE "${aom_asm_config_template}" ${asm_file_header_block})