summaryrefslogtreecommitdiffstats
path: root/tools/gn/ninja_build_writer.h
blob: fe7b7a5d3d98f5f95719edf27c481516590841f3 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// 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.

#ifndef TOOLS_GN_NINJA_BUILD_WRITER_H_
#define TOOLS_GN_NINJA_BUILD_WRITER_H_

#include <iosfwd>
#include <set>
#include <vector>

#include "tools/gn/path_output.h"

class BuildSettings;
class Err;
class Settings;
class Target;
class Toolchain;

// Generates the toplevel "build.ninja" file. This references the individual
// toolchain files and lists all input .gn files as dependencies of the
// build itself.
class NinjaBuildWriter {
 public:
  static bool RunAndWriteFile(
      const BuildSettings* settings,
      const std::vector<const Settings*>& all_settings,
      const Toolchain* default_toolchain,
      const std::vector<const Target*>& default_toolchain_targets,
      Err* err);

 private:
  NinjaBuildWriter(const BuildSettings* settings,
                   const std::vector<const Settings*>& all_settings,
                   const Toolchain* default_toolchain,
                   const std::vector<const Target*>& default_toolchain_targets,
                   std::ostream& out,
                   std::ostream& dep_out);
  ~NinjaBuildWriter();

  bool Run(Err* err);

  void WriteNinjaRules();
  void WriteLinkPool();
  void WriteSubninjas();
  bool WritePhonyAndAllRules(Err* err);

  // Writes a phony rule for the given target with the given name. Adds the new
  // name to the given set. If the name is already in the set, does nothing.
  void WritePhonyRule(const Target* target,
                      const OutputFile& target_file,
                      const std::string& phony_name,
                      std::set<std::string>* written_rules);

  const BuildSettings* build_settings_;
  std::vector<const Settings*> all_settings_;
  const Toolchain* default_toolchain_;
  std::vector<const Target*> default_toolchain_targets_;
  std::ostream& out_;
  std::ostream& dep_out_;
  PathOutput path_output_;

  DISALLOW_COPY_AND_ASSIGN(NinjaBuildWriter);
};

#endif  // TOOLS_GN_NINJA_BUILD_WRITER_H_