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/output_file.h" |
8 #include "tools/gn/string_utils.h" | 9 #include "tools/gn/string_utils.h" |
| 10 #include "tools/gn/target.h" |
9 | 11 |
10 NinjaGroupTargetWriter::NinjaGroupTargetWriter(const Target* target, | 12 NinjaGroupTargetWriter::NinjaGroupTargetWriter(const Target* target, |
11 const Toolchain* toolchain, | |
12 std::ostream& out) | 13 std::ostream& out) |
13 : NinjaTargetWriter(target, toolchain, out) { | 14 : NinjaTargetWriter(target, out) { |
14 } | 15 } |
15 | 16 |
16 NinjaGroupTargetWriter::~NinjaGroupTargetWriter() { | 17 NinjaGroupTargetWriter::~NinjaGroupTargetWriter() { |
17 } | 18 } |
18 | 19 |
19 void NinjaGroupTargetWriter::Run() { | 20 void NinjaGroupTargetWriter::Run() { |
20 // A group rule just generates a stamp file with dependencies on each of | 21 // A group rule just generates a stamp file with dependencies on each of |
21 // the deps in the group. | 22 // the deps and datadeps in the group. |
22 out_ << std::endl << "build "; | 23 std::vector<OutputFile> output_files; |
23 path_output_.WriteFile(out_, helper_.GetTargetOutputFile(target_)); | 24 const LabelTargetVector& deps = target_->deps(); |
24 out_ << ": " | 25 for (size_t i = 0; i < deps.size(); i++) |
25 << helper_.GetRulePrefix(target_->settings()) | 26 output_files.push_back(deps[i].ptr->dependency_output_file()); |
26 << "stamp"; | |
27 | 27 |
28 const LabelTargetVector& deps = target_->deps(); | 28 std::vector<OutputFile> data_output_files; |
29 for (size_t i = 0; i < deps.size(); i++) { | 29 const LabelTargetVector& datadeps = target_->datadeps(); |
30 out_ << " "; | 30 for (size_t i = 0; i < datadeps.size(); i++) |
31 path_output_.WriteFile(out_, helper_.GetTargetOutputFile(deps[i].ptr)); | 31 data_output_files.push_back(deps[i].ptr->dependency_output_file()); |
32 } | |
33 | 32 |
34 const LabelTargetVector& datadeps = target_->datadeps(); | 33 WriteStampForTarget(output_files, data_output_files); |
35 for (size_t i = 0; i < datadeps.size(); i++) { | |
36 out_ << " "; | |
37 path_output_.WriteFile(out_, helper_.GetTargetOutputFile(datadeps[i].ptr)); | |
38 } | |
39 out_ << std::endl; | |
40 } | 34 } |
OLD | NEW |