Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / build / scripts / gperf.py
blob040cec67d3bb8b8d65a29f7693d8f04f28bba107
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # Invokes gperf for the GN build. The first argument is the path to gperf.
6 # TODO(brettw) this can be removed once the run_executable rules have been
7 # checked in for the GN build.
9 import subprocess
10 import sys
12 subprocess.check_call(sys.argv[1:])