summaryrefslogtreecommitdiff
path: root/tools/v8_gypfiles/ForEachReplace.py
blob: 730487a2baa22c37bc885b1d512cb7f226673b05 (plain)
1
2
3
4
5
6
7
# Copyright (c) 2019 Ujjwal Sharma <usharma1998@gmail>. All rights reserved.
# Use of this source code is governed by an MIT-style license.

def DoMain(args):
  old = args.pop(0)
  new = args.pop(0)
  return ' '.join(a.replace(old, new) for a in args)