aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skqp/inflate.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/skqp/inflate.py')
-rwxr-xr-xtools/skqp/inflate.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/skqp/inflate.py b/tools/skqp/inflate.py
new file mode 100755
index 0000000000..97cc3a405d
--- /dev/null
+++ b/tools/skqp/inflate.py
@@ -0,0 +1,8 @@
+#! /usr/bin/env python2
+# 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 sys
+import zlib
+sys.stdout.write(zlib.decompress(sys.stdin.read()))
+