Lines Matching full:targets
41 # Build targets that can be manually specified.
42 TARGETS = ["d8", "cctest", "unittests", "v8_fuzzers", "mkgrokdump", variable
44 # Build targets that get built when you don't specify any (and specified tests
45 # don't imply any other targets).
54 "all": {"targets": BUILD_TARGETS_ALL, "tests": []},
55 "tests": {"targets": BUILD_TARGETS_TEST, "tests": []},
56 "check": {"targets": BUILD_TARGETS_TEST, "tests": DEFAULT_TESTS},
57 "checkall": {"targets": BUILD_TARGETS_ALL, "tests": ["ALL"]},
206 def __init__(self, arch, mode, targets, tests=[]): argument
209 self.targets = set(targets)
212 def Extend(self, targets, tests=[]): argument
213 self.targets.update(targets)
243 targets = " ".join(self.targets)
247 return _Call("autoninja -C %s %s" % (path, targets))
250 (path, targets))
285 def PopulateConfigs(self, arches, modes, targets, tests): argument
290 self.configs[path] = Config(a, m, targets, tests)
292 self.configs[path].Extend(targets, tests)
309 targets = []
322 if word in TARGETS:
335 elif word in TARGETS:
336 targets.append(word)
345 targets += impact["targets"]
350 targets = targets or DEFAULT_TARGETS
352 self.PopulateConfigs(arches, modes, targets, tests)