aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/call.py
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-09-01 12:17:03 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-05 13:57:44 +0000
commita6d2d708d7ca980b41cc2fefcb4a2916212b3960 (patch)
treef42983f5e003579da4b87fdf1dff46faa607bd2e /gn/call.py
parentb34b62692e518fb80aab1f7199f54c92a5de405f (diff)
Add gn plumbing for mdbviz tool
Change-Id: I06e6b63c2742da069f48ff5d7defafc63a485af7 Reviewed-on: https://skia-review.googlesource.com/41842 Reviewed-by: Mike Klein <mtklein@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'gn/call.py')
-rw-r--r--gn/call.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/gn/call.py b/gn/call.py
new file mode 100644
index 0000000000..edda821fe8
--- /dev/null
+++ b/gn/call.py
@@ -0,0 +1,12 @@
+#!/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 subprocess
+import sys
+
+subprocess.check_call(sys.argv[1:])
+