| 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.
|
|
|