Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: platform_tools/android/gyp_gen/generate_user_config.py

Issue 221063003: Rename test SkUserConfig files. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Change .h to .txt to skip housekeeping. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | platform_tools/android/tests/expectations/SkUserConfig.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/gyp_gen/generate_user_config.py
diff --git a/platform_tools/android/gyp_gen/generate_user_config.py b/platform_tools/android/gyp_gen/generate_user_config.py
index fd99ba2ed46ba48ab755d7e81b246071609eb421..1fafc1d9799b2d79c214f31440d9f6f295ac9a85 100644
--- a/platform_tools/android/gyp_gen/generate_user_config.py
+++ b/platform_tools/android/gyp_gen/generate_user_config.py
@@ -76,15 +76,15 @@ def generate_user_config(original_sk_user_config, target_dir, ordered_set):
# do this build check for other tools that still read this header
dst.write('#ifdef ANDROID\n')
- dst.write('\t#include <utils/misc.h>\n')
+ dst.write(' #include <utils/misc.h>\n')
dst.write('#endif\n\n')
dst.write('#if __BYTE_ORDER == __BIG_ENDIAN\n')
- dst.write('\t#define SK_CPU_BENDIAN\n')
- dst.write('\t#undef SK_CPU_LENDIAN\n')
+ dst.write(' #define SK_CPU_BENDIAN\n')
+ dst.write(' #undef SK_CPU_LENDIAN\n')
dst.write('#else\n')
- dst.write('\t#define SK_CPU_LENDIAN\n')
- dst.write('\t#undef SK_CPU_BENDIAN\n')
+ dst.write(' #define SK_CPU_LENDIAN\n')
+ dst.write(' #undef SK_CPU_BENDIAN\n')
dst.write('#endif\n\n')
# Now add the defines from the gyp files.
« no previous file with comments | « no previous file | platform_tools/android/tests/expectations/SkUserConfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698