Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4fd6bb1

Browse files
Remove an obsolete GN flag that had been used by SkParagraph (#24924)
1 parent a29ab4b commit 4fd6bb1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tools/gn

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,11 @@ def to_gn_args(args):
108108
gn_args['skia_use_fontconfig'] = args.enable_fontconfig
109109
gn_args['flutter_use_fontconfig'] = args.enable_fontconfig
110110
gn_args['flutter_enable_skshaper'] = args.enable_skshaper
111-
if args.target_os == 'winuwp':
112-
gn_args['skia_enable_winuwp'] = True
113111
if args.enable_skshaper:
114112
gn_args['skia_use_icu'] = True
115-
gn_args['skia_enable_icu_ubrk_safeclone'] = True
116113
gn_args['flutter_always_use_skshaper'] = args.always_use_skshaper
114+
if args.target_os == 'winuwp':
115+
gn_args['skia_enable_winuwp'] = True
117116
gn_args['is_official_build'] = True # Disable Skia test utilities.
118117
gn_args['dart_component_kind'] = 'static_library' # Always link Dart in statically.
119118
gn_args['is_debug'] = args.unoptimized

0 commit comments

Comments
 (0)