Skip to content

Commit

Permalink
remove fractional translation gn args (flutter#34507)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahwilliams authored Jul 7, 2022
1 parent 8490fe7 commit b5fdb54
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ def get_out_dir(args):
if args.target_os == 'fuchsia' and args.fuchsia_cpu is not None:
target_dir.append(args.fuchsia_cpu)

if args.support_fractional_translation:
target_dir.append('fractional')

# This exists for backwards compatibility of tests that are being run
# on LUCI. This can be removed in coordination with a LUCI change:
# https://github.com/flutter/flutter/issues/76547
Expand Down Expand Up @@ -347,10 +344,6 @@ def to_gn_args(args):
if args.allow_deprecated_api_calls:
gn_args['allow_deprecated_api_calls'] = args.allow_deprecated_api_calls

if args.support_fractional_translation:
gn_args['support_fractional_translation'
] = args.support_fractional_translation

# DBC is not supported anymore.
if args.interpreter:
raise Exception(
Expand Down Expand Up @@ -833,15 +826,6 @@ def parse_args(args):
'--fuchsia-target-api-level', dest='fuchsia_target_api_level'
)

parser.add_argument(
'--support-fractional-translation',
dest='support_fractional_translation',
default=False,
action='store_true',
help='Whether to allow layers to render at fraction pixel '
'boundaries.'
)

# Flags for Dart features.
parser.add_argument(
'--use-mallinfo2',
Expand Down

0 comments on commit b5fdb54

Please sign in to comment.