Skip to content

Commit

Permalink
[impeller] Enable Impeller playground if an environment variable is s…
Browse files Browse the repository at this point in the history
…et. (flutter#33107)
  • Loading branch information
chinmaygarde authored May 4, 2022
1 parent ce80cd2 commit 695b856
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,8 @@ def to_gn_args(args):
# Impeller flags.
if args.enable_impeller_playground:
gn_args['impeller_enable_playground'] = args.enable_impeller_playground
elif os.getenv('FLUTTER_IMPELLER_ENABLE_PLAYGROUND', '0') == '1':
gn_args['impeller_enable_playground'] = True

return gn_args

Expand Down

0 comments on commit 695b856

Please sign in to comment.