aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/compile_processors.py
blob: 9fc5c3de596cead5608a004194d978622c1d87c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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]
processors = sys.argv[2:]
for p in processors:
    path, _ = os.path.splitext(p)
    print("Recompiling " + p + "...")
    try:
        subprocess.check_output([skslc, p, path + ".h"])
        subprocess.check_call("clang-format --sort-includes=false -i \"" +
                              path + ".h\"", shell=True)
        subprocess.check_output([skslc, p, path + ".cpp"])
        subprocess.check_call("clang-format --sort-includes=false -i \"" +
                              path + ".cpp\"", shell=True)
    except subprocess.CalledProcessError as err:
        print("### Error compiling " + p + ":")
        print(err.output)
        exit(1)