OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2017 The Dart project authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 """Forwards to the clang-format for the MacOS toolchain.""" |
| 7 |
| 8 import os |
| 9 import subprocess |
| 10 import sys |
| 11 |
| 12 DART_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
| 13 TOOLCHAIN = os.path.join(DART_ROOT, 'buildtools', 'toolchain') |
| 14 CLANG_FORMAT = os.path.join(TOOLCHAIN, 'clang+llvm-x86_64-darwin', 'bin', 'clang
-format') |
| 15 |
| 16 def main(argv): |
| 17 return subprocess.call([CLANG_FORMAT] + argv[1:]) |
| 18 |
| 19 if __name__ == '__main__': |
| 20 sys.exit(main(sys.argv)) |
OLD | NEW |