aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/compile_processors.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn/compile_processors.py')
-rwxr-xr-xgn/compile_processors.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/gn/compile_processors.py b/gn/compile_processors.py
deleted file mode 100755
index 72f23febdd..0000000000
--- a/gn/compile_processors.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/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]
-dst = sys.argv[2]
-processors = sys.argv[3:]
-for p in processors:
- path, _ = os.path.splitext(p)
- filename = os.path.split(path)[1]
- subprocess.check_call([skslc, p, os.path.join(dst, filename + ".h")])
- subprocess.check_call([skslc, p, os.path.join(dst, filename + ".cpp")])