Revert of Revert of Add a WorkerScheduler and a WebThreadImplForWorker (patchset...
[chromium-blink-merge.git] / tools / gn / target.cc
blobd5615c061aa1db006cb0342dd72525fbcc89a80b
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "tools/gn/target.h"
7 #include "base/bind.h"
8 #include "base/strings/string_util.h"
9 #include "base/strings/stringprintf.h"
10 #include "tools/gn/config_values_extractors.h"
11 #include "tools/gn/deps_iterator.h"
12 #include "tools/gn/filesystem_utils.h"
13 #include "tools/gn/scheduler.h"
14 #include "tools/gn/substitution_writer.h"
16 namespace {
18 typedef std::set<const Config*> ConfigSet;
20 // Merges the public configs from the given target to the given config list.
21 void MergePublicConfigsFrom(const Target* from_target,
22 UniqueVector<LabelConfigPair>* dest) {
23 const UniqueVector<LabelConfigPair>& pub = from_target->public_configs();
24 dest->Append(pub.begin(), pub.end());
27 // Like MergePublicConfigsFrom above except does the "all dependent" ones. This
28 // additionally adds all configs to the all_dependent_configs_ of the dest
29 // target given in *all_dest.
30 void MergeAllDependentConfigsFrom(const Target* from_target,
31 UniqueVector<LabelConfigPair>* dest,
32 UniqueVector<LabelConfigPair>* all_dest) {
33 for (const auto& pair : from_target->all_dependent_configs()) {
34 all_dest->push_back(pair);
35 dest->push_back(pair);
39 Err MakeTestOnlyError(const Target* from, const Target* to) {
40 return Err(from->defined_from(), "Test-only dependency not allowed.",
41 from->label().GetUserVisibleName(false) + "\n"
42 "which is NOT marked testonly can't depend on\n" +
43 to->label().GetUserVisibleName(false) + "\n"
44 "which is marked testonly. Only targets with \"testonly = true\"\n"
45 "can depend on other test-only targets.\n"
46 "\n"
47 "Either mark it test-only or don't do this dependency.");
50 Err MakeStaticLibDepsError(const Target* from, const Target* to) {
51 return Err(from->defined_from(),
52 "Complete static libraries can't depend on static libraries.",
53 from->label().GetUserVisibleName(false) +
54 "\n"
55 "which is a complete static library can't depend on\n" +
56 to->label().GetUserVisibleName(false) +
57 "\n"
58 "which is a static library.\n"
59 "\n"
60 "Use source sets for intermediate targets instead.");
63 } // namespace
65 Target::Target(const Settings* settings, const Label& label)
66 : Item(settings, label),
67 output_type_(UNKNOWN),
68 all_headers_public_(true),
69 check_includes_(true),
70 complete_static_lib_(false),
71 testonly_(false),
72 toolchain_(nullptr) {
75 Target::~Target() {
78 // static
79 const char* Target::GetStringForOutputType(OutputType type) {
80 switch (type) {
81 case UNKNOWN:
82 return "Unknown";
83 case GROUP:
84 return "Group";
85 case EXECUTABLE:
86 return "Executable";
87 case SHARED_LIBRARY:
88 return "Shared library";
89 case STATIC_LIBRARY:
90 return "Static library";
91 case SOURCE_SET:
92 return "Source set";
93 case COPY_FILES:
94 return "Copy";
95 case ACTION:
96 return "Action";
97 case ACTION_FOREACH:
98 return "ActionForEach";
99 default:
100 return "";
104 Target* Target::AsTarget() {
105 return this;
108 const Target* Target::AsTarget() const {
109 return this;
112 bool Target::OnResolved(Err* err) {
113 DCHECK(output_type_ != UNKNOWN);
114 DCHECK(toolchain_) << "Toolchain should have been set before resolving.";
116 // Copy our own dependent configs to the list of configs applying to us.
117 configs_.Append(all_dependent_configs_.begin(), all_dependent_configs_.end());
118 MergePublicConfigsFrom(this, &configs_);
120 // Copy our own libs and lib_dirs to the final set. This will be from our
121 // target and all of our configs. We do this specially since these must be
122 // inherited through the dependency tree (other flags don't work this way).
123 for (ConfigValuesIterator iter(this); !iter.done(); iter.Next()) {
124 const ConfigValues& cur = iter.cur();
125 all_lib_dirs_.append(cur.lib_dirs().begin(), cur.lib_dirs().end());
126 all_libs_.append(cur.libs().begin(), cur.libs().end());
129 PullDependentTargetInfo();
130 PullForwardedDependentConfigs();
131 PullRecursiveHardDeps();
133 FillOutputFiles();
135 if (!CheckVisibility(err))
136 return false;
137 if (!CheckTestonly(err))
138 return false;
139 if (!CheckNoNestedStaticLibs(err))
140 return false;
142 return true;
145 bool Target::IsLinkable() const {
146 return output_type_ == STATIC_LIBRARY || output_type_ == SHARED_LIBRARY;
149 bool Target::IsFinal() const {
150 return output_type_ == EXECUTABLE || output_type_ == SHARED_LIBRARY ||
151 (output_type_ == STATIC_LIBRARY && complete_static_lib_);
154 DepsIteratorRange Target::GetDeps(DepsIterationType type) const {
155 if (type == DEPS_LINKED) {
156 return DepsIteratorRange(DepsIterator(
157 &public_deps_, &private_deps_, nullptr));
159 // All deps.
160 return DepsIteratorRange(DepsIterator(
161 &public_deps_, &private_deps_, &data_deps_));
164 std::string Target::GetComputedOutputName(bool include_prefix) const {
165 DCHECK(toolchain_)
166 << "Toolchain must be specified before getting the computed output name.";
168 const std::string& name = output_name_.empty() ? label().name()
169 : output_name_;
171 std::string result;
172 if (include_prefix) {
173 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this);
174 const std::string& prefix = tool->output_prefix();
175 // Only add the prefix if the name doesn't already have it.
176 if (!StartsWithASCII(name, prefix, true))
177 result = prefix;
180 result.append(name);
181 return result;
184 bool Target::SetToolchain(const Toolchain* toolchain, Err* err) {
185 DCHECK(!toolchain_);
186 DCHECK_NE(UNKNOWN, output_type_);
187 toolchain_ = toolchain;
189 const Tool* tool = toolchain->GetToolForTargetFinalOutput(this);
190 if (tool)
191 return true;
193 // Tool not specified for this target type.
194 if (err) {
195 *err = Err(defined_from(), "This target uses an undefined tool.",
196 base::StringPrintf(
197 "The target %s\n"
198 "of type \"%s\"\n"
199 "uses toolchain %s\n"
200 "which doesn't have the tool \"%s\" defined.\n\n"
201 "Alas, I can not continue.",
202 label().GetUserVisibleName(false).c_str(),
203 GetStringForOutputType(output_type_),
204 label().GetToolchainLabel().GetUserVisibleName(false).c_str(),
205 Toolchain::ToolTypeToName(
206 toolchain->GetToolTypeForTargetFinalOutput(this)).c_str()));
208 return false;
211 void Target::PullDependentTargetInfo() {
212 // Gather info from our dependents we need.
213 for (const auto& pair : GetDeps(DEPS_LINKED)) {
214 const Target* dep = pair.ptr;
215 MergeAllDependentConfigsFrom(dep, &configs_, &all_dependent_configs_);
216 MergePublicConfigsFrom(dep, &configs_);
218 // Direct dependent libraries.
219 if (dep->output_type() == STATIC_LIBRARY ||
220 dep->output_type() == SHARED_LIBRARY ||
221 dep->output_type() == SOURCE_SET)
222 inherited_libraries_.push_back(dep);
224 // Inherited libraries and flags are inherited across static library
225 // boundaries.
226 if (!dep->IsFinal()) {
227 inherited_libraries_.Append(dep->inherited_libraries().begin(),
228 dep->inherited_libraries().end());
230 // Inherited library settings.
231 all_lib_dirs_.append(dep->all_lib_dirs());
232 all_libs_.append(dep->all_libs());
237 void Target::PullForwardedDependentConfigs() {
238 // Pull public configs from each of our dependency's public deps.
239 for (const auto& dep : public_deps_)
240 PullForwardedDependentConfigsFrom(dep.ptr);
242 // Forward public configs if explicitly requested.
243 for (const auto& dep : forward_dependent_configs_) {
244 const Target* from_target = dep.ptr;
246 // The forward_dependent_configs_ must be in the deps (public or private)
247 // already, so we don't need to bother copying to our configs, only
248 // forwarding.
249 DCHECK(std::find_if(private_deps_.begin(), private_deps_.end(),
250 LabelPtrPtrEquals<Target>(from_target)) !=
251 private_deps_.end() ||
252 std::find_if(public_deps_.begin(), public_deps_.end(),
253 LabelPtrPtrEquals<Target>(from_target)) !=
254 public_deps_.end());
256 PullForwardedDependentConfigsFrom(from_target);
260 void Target::PullForwardedDependentConfigsFrom(const Target* from) {
261 public_configs_.Append(from->public_configs().begin(),
262 from->public_configs().end());
265 void Target::PullRecursiveHardDeps() {
266 for (const auto& pair : GetDeps(DEPS_LINKED)) {
267 if (pair.ptr->hard_dep())
268 recursive_hard_deps_.insert(pair.ptr);
270 // Android STL doesn't like insert(begin, end) so do it manually.
271 // TODO(brettw) this can be changed to
272 // insert(iter.target()->begin(), iter.target()->end())
273 // when Android uses a better STL.
274 for (std::set<const Target*>::const_iterator cur =
275 pair.ptr->recursive_hard_deps().begin();
276 cur != pair.ptr->recursive_hard_deps().end(); ++cur)
277 recursive_hard_deps_.insert(*cur);
281 void Target::FillOutputFiles() {
282 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this);
283 switch (output_type_) {
284 case GROUP:
285 case SOURCE_SET:
286 case COPY_FILES:
287 case ACTION:
288 case ACTION_FOREACH: {
289 // These don't get linked to and use stamps which should be the first
290 // entry in the outputs. These stamps are named
291 // "<target_out_dir>/<targetname>.stamp".
292 dependency_output_file_ = GetTargetOutputDirAsOutputFile(this);
293 dependency_output_file_.value().append(GetComputedOutputName(true));
294 dependency_output_file_.value().append(".stamp");
295 break;
297 case EXECUTABLE:
298 // Executables don't get linked to, but the first output is used for
299 // dependency management.
300 CHECK_GE(tool->outputs().list().size(), 1u);
301 dependency_output_file_ =
302 SubstitutionWriter::ApplyPatternToLinkerAsOutputFile(
303 this, tool, tool->outputs().list()[0]);
304 break;
305 case STATIC_LIBRARY:
306 // Static libraries both have dependencies and linking going off of the
307 // first output.
308 CHECK(tool->outputs().list().size() >= 1);
309 link_output_file_ = dependency_output_file_ =
310 SubstitutionWriter::ApplyPatternToLinkerAsOutputFile(
311 this, tool, tool->outputs().list()[0]);
312 break;
313 case SHARED_LIBRARY:
314 CHECK(tool->outputs().list().size() >= 1);
315 if (tool->link_output().empty() && tool->depend_output().empty()) {
316 // Default behavior, use the first output file for both.
317 link_output_file_ = dependency_output_file_ =
318 SubstitutionWriter::ApplyPatternToLinkerAsOutputFile(
319 this, tool, tool->outputs().list()[0]);
320 } else {
321 // Use the tool-specified ones.
322 if (!tool->link_output().empty()) {
323 link_output_file_ =
324 SubstitutionWriter::ApplyPatternToLinkerAsOutputFile(
325 this, tool, tool->link_output());
327 if (!tool->depend_output().empty()) {
328 dependency_output_file_ =
329 SubstitutionWriter::ApplyPatternToLinkerAsOutputFile(
330 this, tool, tool->depend_output());
333 break;
334 case UNKNOWN:
335 default:
336 NOTREACHED();
340 bool Target::CheckVisibility(Err* err) const {
341 for (const auto& pair : GetDeps(DEPS_ALL)) {
342 if (!Visibility::CheckItemVisibility(this, pair.ptr, err))
343 return false;
345 return true;
348 bool Target::CheckTestonly(Err* err) const {
349 // If the current target is marked testonly, it can include both testonly
350 // and non-testonly targets, so there's nothing to check.
351 if (testonly())
352 return true;
354 // Verify no deps have "testonly" set.
355 for (const auto& pair : GetDeps(DEPS_ALL)) {
356 if (pair.ptr->testonly()) {
357 *err = MakeTestOnlyError(this, pair.ptr);
358 return false;
362 return true;
365 bool Target::CheckNoNestedStaticLibs(Err* err) const {
366 // If the current target is not a complete static library, it can depend on
367 // static library targets with no problem.
368 if (!(output_type() == Target::STATIC_LIBRARY && complete_static_lib()))
369 return true;
371 // Verify no deps are static libraries.
372 for (const auto& pair : GetDeps(DEPS_ALL)) {
373 if (pair.ptr->output_type() == Target::STATIC_LIBRARY) {
374 *err = MakeStaticLibDepsError(this, pair.ptr);
375 return false;
379 // Verify no inherited libraries are static libraries.
380 for (const auto& lib : inherited_libraries()) {
381 if (lib->output_type() == Target::STATIC_LIBRARY) {
382 *err = MakeStaticLibDepsError(this, lib);
383 return false;
386 return true;