blob: df95a82dcfdfdf9bab0bfa6c216f90549d73d68e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "tools/gn/ninja_group_target_writer.h"
#include "base/strings/string_util.h"
#include "tools/gn/string_utils.h"
NinjaGroupTargetWriter::NinjaGroupTargetWriter(const Target* target,
std::ostream& out)
: NinjaTargetWriter(target, out) {
}
NinjaGroupTargetWriter::~NinjaGroupTargetWriter() {
}
void NinjaGroupTargetWriter::Run() {
// A group rule just generates a stamp file with dependencies on each of
// the deps in the group.
out_ << std::endl << "build ";
path_output_.WriteFile(out_, helper_.GetTargetOutputFile(target_));
out_ << ": "
<< helper_.GetRulePrefix(target_->settings()->toolchain())
<< "stamp";
const std::vector<const Target*>& deps = target_->deps();
for (size_t i = 0; i < deps.size(); i++) {
out_ << " ";
path_output_.WriteFile(out_, helper_.GetTargetOutputFile(deps[i]));
}
const std::vector<const Target*>& datadeps = target_->datadeps();
for (size_t i = 0; i < datadeps.size(); i++) {
out_ << " ";
path_output_.WriteFile(out_, helper_.GetTargetOutputFile(datadeps[i]));
}
out_ << std::endl;
}
|