Lines Matching +full:ninja +full:- +full:linux
3 # Use of this source code is governed by a BSD-style license that can be
6 """gyptest.py -- test runner for GYP tests."""
34 parser.add_argument("-a", "--all", action="store_true", help="run all tests")
35 parser.add_argument("-C", "--chdir", action="store", help="change to directory")
37 "-f",
38 "--format",
44 "-G",
45 "--gyp_option",
48 help="Add -G options to the gyp command line",
51 "-l", "--list", action="store_true", help="list available tests and exit"
54 "-n",
55 "--no-exec",
60 "--path", action="append", default=[], help="additional $PATH directory"
63 "-q",
64 "--quiet",
69 "-v",
70 "--verbose",
87 sys.stderr.write("Specify -a to get all tests.\n")
124 "win32": ["msvs", "ninja"],
125 "linux": ["make", "ninja"],
126 "linux2": ["make", "ninja"],
127 "linux3": ["make", "ninja"],
128 # TODO: Re-enable xcode-ninja.
130 # 'darwin': ['make', 'ninja', 'xcode', 'xcode-ninja'],
131 "darwin": ["make", "ninja", "xcode"],
136 gyp_options += ["-G", option]
161 elif sys.platform in ("linux", "linux2"):
162 print(" Linux %s" % " ".join(platform.linux_distribution()))
194 self.took = time.time() - run_start
210 took = time.time() - start
232 if index == -1:
235 self.hpos = len(msg) - index