summaryrefslogtreecommitdiff
path: root/deps/gyp/gyptest.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/gyptest.py')
-rwxr-xr-xdeps/gyp/gyptest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/gyp/gyptest.py b/deps/gyp/gyptest.py
index 8f3ee0ffb0..8e4fc47d5c 100755
--- a/deps/gyp/gyptest.py
+++ b/deps/gyp/gyptest.py
@@ -13,7 +13,7 @@ import optparse
import subprocess
import sys
-class CommandRunner:
+class CommandRunner(object):
"""
Executor class for commands, including "commands" implemented by
Python functions.
@@ -117,7 +117,7 @@ class CommandRunner:
return self.execute(command, stdout, stderr)
-class Unbuffered:
+class Unbuffered(object):
def __init__(self, fp):
self.fp = fp
def write(self, arg):
@@ -224,7 +224,7 @@ def main(argv=None):
'win32': ['msvs', 'ninja'],
'linux2': ['make', 'ninja'],
'linux3': ['make', 'ninja'],
- 'darwin': ['make', 'ninja', 'xcode'],
+ 'darwin': ['make', 'ninja', 'xcode', 'xcode-ninja'],
}[sys.platform]
for format in format_list: