Skip to content

Commit

Permalink
Disable wuff on Windows (flutter#7713)
Browse files Browse the repository at this point in the history
MSVC won't compile wuff...
  • Loading branch information
liyuqian authored Feb 6, 2019
1 parent ebd18a2 commit 3c118b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def to_gn_args(args):
gn_args['skia_use_x11'] = False # Never add the X11 dependency (only takes effect on Linux).
gn_args['skia_use_expat'] = args.target_os == 'android'
gn_args['skia_use_fontconfig'] = False # Use the custom font manager instead.
gn_args['skia_use_wuffs'] = True
gn_args['skia_use_wuffs'] = not sys.platform.startswith(('cygwin', 'win'))
gn_args['is_official_build'] = True # Disable Skia test utilities.

gn_args['is_debug'] = args.unoptimized
Expand Down

0 comments on commit 3c118b6

Please sign in to comment.