blob: c2efc9269e44c1f2c9d32d385c98fe0317edccd4 [file] [log] [blame]
// 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 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);
// Writes only the toolchain.ninja files, skipping the root buildfile. The
// settings for the files written will be added to the vector.
//
// The skip files will avoid writing "subninja" rules when we're doing a
// side-by-side GYP build. .ninja files exactly matching the ones in the set
// will be ignored.
static bool RunAndWriteToolchainFiles(
const BuildSettings* build_settings,
const std::set<std::string>& skip_files,
std::vector<const Settings*>* all_settings);
private:
NinjaWriter(const BuildSettings* build_settings);
~NinjaWriter();
bool WriteToolchains(
const std::set<std::string>& skip_files,
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_;
DISALLOW_COPY_AND_ASSIGN(NinjaWriter);
};
#endif // TOOLS_GN_NINJA_WRITER_H_