blob: 20b8d7d5bcced89c0de84b2c3d83ec397658401b [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright 2017 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import subprocess
import sys
skslc = sys.argv[1]
clangFormat = sys.argv[2]
processors = sys.argv[3:]
for p in processors:
path, _ = os.path.splitext(p)
print("Recompiling " + p + "...")
try:
subprocess.check_output([skslc, p, path + ".h"])
subprocess.check_call(clangFormat + " --sort-includes=false -i \"" +
path + ".h\"", shell=True)
subprocess.check_output([skslc, p, path + ".cpp"])
subprocess.check_call(clangFormat + " --sort-includes=false -i \"" +
path + ".cpp\"", shell=True)
except subprocess.CalledProcessError as err:
print("### Error compiling " + p + ":")
print(err.output)
exit(1)