OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "tools/gn/ninja_group_target_writer.h" | 5 #include "tools/gn/ninja_group_target_writer.h" |
6 | 6 |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "tools/gn/deps_iterator.h" |
8 #include "tools/gn/output_file.h" | 9 #include "tools/gn/output_file.h" |
9 #include "tools/gn/string_utils.h" | 10 #include "tools/gn/string_utils.h" |
10 #include "tools/gn/target.h" | 11 #include "tools/gn/target.h" |
11 | 12 |
12 NinjaGroupTargetWriter::NinjaGroupTargetWriter(const Target* target, | 13 NinjaGroupTargetWriter::NinjaGroupTargetWriter(const Target* target, |
13 std::ostream& out) | 14 std::ostream& out) |
14 : NinjaTargetWriter(target, out) { | 15 : NinjaTargetWriter(target, out) { |
15 } | 16 } |
16 | 17 |
17 NinjaGroupTargetWriter::~NinjaGroupTargetWriter() { | 18 NinjaGroupTargetWriter::~NinjaGroupTargetWriter() { |
18 } | 19 } |
19 | 20 |
20 void NinjaGroupTargetWriter::Run() { | 21 void NinjaGroupTargetWriter::Run() { |
21 // A group rule just generates a stamp file with dependencies on each of | 22 // A group rule just generates a stamp file with dependencies on each of |
22 // the deps and datadeps in the group. | 23 // the deps and data_deps in the group. |
23 std::vector<OutputFile> output_files; | 24 std::vector<OutputFile> output_files; |
24 const LabelTargetVector& deps = target_->deps(); | 25 for (DepsIterator iter(target_, DepsIterator::LINKED_ONLY); |
25 for (size_t i = 0; i < deps.size(); i++) | 26 !iter.done(); iter.Advance()) |
26 output_files.push_back(deps[i].ptr->dependency_output_file()); | 27 output_files.push_back(iter.target()->dependency_output_file()); |
27 | 28 |
28 std::vector<OutputFile> data_output_files; | 29 std::vector<OutputFile> data_output_files; |
29 const LabelTargetVector& datadeps = target_->datadeps(); | 30 const LabelTargetVector& data_deps = target_->data_deps(); |
30 for (size_t i = 0; i < datadeps.size(); i++) | 31 for (size_t i = 0; i < data_deps.size(); i++) |
31 data_output_files.push_back(datadeps[i].ptr->dependency_output_file()); | 32 data_output_files.push_back(data_deps[i].ptr->dependency_output_file()); |
32 | 33 |
33 WriteStampForTarget(output_files, data_output_files); | 34 WriteStampForTarget(output_files, data_output_files); |
34 } | 35 } |
OLD | NEW |