blob: 8859f1ad65ec4e7e2c434d097108f87f5283e587 (
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
|
// 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_WRITER_H_
#define TOOLS_GN_NINJA_WRITER_H_
#include <set>
#include <string>
#include <vector>
#include "base/basictypes.h"
class Builder;
class BuildSettings;
class Settings;
class Target;
class NinjaWriter {
public:
// On failure will print an error and will return false.
static bool RunAndWriteFiles(const BuildSettings* build_settings,
Builder* builder);
// Writes only the toolchain.ninja files, skipping the root buildfile. The
// settings for the files written will be added to the vector.
static bool RunAndWriteToolchainFiles(
const BuildSettings* build_settings,
Builder* builder,
std::vector<const Settings*>* all_settings);
private:
NinjaWriter(const BuildSettings* build_settings, Builder* builder);
~NinjaWriter();
bool WriteToolchains(
std::vector<const Settings*>* all_settings,
std::vector<const Target*>* default_targets);
bool WriteRootBuildfiles(const std::vector<const Settings*>& all_settings,
const std::vector<const Target*>& default_targets);
const BuildSettings* build_settings_;
Builder* builder_;
DISALLOW_COPY_AND_ASSIGN(NinjaWriter);
};
#endif // TOOLS_GN_NINJA_WRITER_H_
|