Index: tools/v8_context_snapshot/run.py |
diff --git a/tools/v8_context_snapshot/run.py b/tools/v8_context_snapshot/run.py |
deleted file mode 100644 |
index a376b4c10e8a57ec6cd9c2d3de5e82c0d711da1c..0000000000000000000000000000000000000000 |
--- a/tools/v8_context_snapshot/run.py |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-# Copyright 2017 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-"""This program wraps an arbitrary command since gn currently can only execute |
-scripts.""" |
- |
-import os |
-import subprocess |
-import sys |
- |
-args = sys.argv[1:] |
-args[0] = os.path.abspath(args[0]) |
- |
-sys.exit(subprocess.call(args)) |