Fix remaining discrepencies between master and es3proto project files.

Change-Id: I335c9346ac268beab25184e2b18ccfdd0b15c7b1
Reviewed-on: https://chromium-review.googlesource.com/182150
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Tested-by: Geoff Lang <geofflang@chromium.org>
diff --git a/generate_projects b/generate_projects
index 66d37c6..ea6fd68 100644
--- a/generate_projects
+++ b/generate_projects
@@ -23,25 +23,25 @@
 build_tests = False
 
 if __name__ == '__main__':
-	gyp_cmd = os.path.join(gyp_dir, 'gyp')
-	gyp_cmd += ' --ignore-environment'
-	gyp_cmd += ' --depth=.'
-	gyp_cmd += ' --include=' + os.path.join(script_dir, 'common.gypi')
-	gyp_cmd += ' --generator-output=' + generation_dir
-	gyp_cmd += ' --format=' + gyp_generators
-	gyp_cmd += ' -G msvs_version=' + msvs_version
-	gyp_cmd += ' -D angle_build_tests=' + ('1' if build_tests else '0')
-	gyp_cmd += ' -D angle_build_samples=' + ('1' if build_samples else '0')
-	gyp_cmd += ' -D angle_relative_src_path=..\\..\\src\\'
-	gyp_cmd += ' ' + os.path.join(script_dir, 'all.gyp')
+    gyp_cmd = os.path.join(gyp_dir, 'gyp')
+    gyp_cmd += ' --ignore-environment'
+    gyp_cmd += ' --depth=.'
+    gyp_cmd += ' --include=' + os.path.join(script_dir, 'common.gypi')
+    gyp_cmd += ' --generator-output=' + generation_dir
+    gyp_cmd += ' --format=' + gyp_generators
+    gyp_cmd += ' -G msvs_version=' + msvs_version
+    gyp_cmd += ' -D angle_build_tests=' + ('1' if build_tests else '0')
+    gyp_cmd += ' -D angle_build_samples=' + ('1' if build_samples else '0')
+    gyp_cmd += ' -D angle_relative_src_path=..\\..\\src\\'
+    gyp_cmd += ' ' + os.path.join(script_dir, 'all.gyp')
 
-	print 'Generating projects to' + generation_dir + ' from gyp files...'
-	print gyp_cmd
-	sys.stdout.flush()
-	os.system(gyp_cmd)
+    print 'Generating projects to ' + generation_dir + ' from gyp files...'
+    print gyp_cmd
+    sys.stdout.flush()
+    os.system(gyp_cmd)
 
-	git_add_cmd = 'git add ' + generation_dir + ' -u'
-	print '\nRunning git add on updated Visual Studio projects...'
-	print git_add_cmd
-	sys.stdout.flush()
-	os.system(git_add_cmd)
+    git_add_cmd = 'git add ' + generation_dir + ' -u'
+    print '\nRunning git add on updated Visual Studio projects...'
+    print git_add_cmd
+    sys.stdout.flush()
+    os.system(git_add_cmd)