ee1c8a733e
This reverts commit bce7d86270
.
Bug: skia:
Change-Id: I3ccaf47b3d4b9dcb9e049671117183a374526032
Reviewed-on: https://skia-review.googlesource.com/c/194185
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
27 lines
815 B
Python
Executable File
27 lines
815 B
Python
Executable File
#!/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
|
|
|
|
sksllex = sys.argv[1]
|
|
clangFormat = sys.argv[2]
|
|
src = sys.argv[3]
|
|
try:
|
|
subprocess.check_output([sksllex, src + "/sksl/lex/sksl.lex", "Lexer",
|
|
"Token", src + "/sksl/SkSLLexer.h", src +
|
|
"/sksl/SkSLLexer.cpp"])
|
|
subprocess.check_call(clangFormat + " -i \"" + src + "/sksl/SkSLLexer.h\"",
|
|
shell=True)
|
|
subprocess.check_call(clangFormat + " -i \"" + src +
|
|
"/sksl/SkSLLexer.cpp\"", shell=True)
|
|
except subprocess.CalledProcessError as err:
|
|
print("### Lexer error:")
|
|
print(err.output)
|
|
exit(1)
|