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
3// found in the LICENSE file.
4
5#include "tools/gn/config.h"
6
7#include "tools/gn/err.h"
8#include "tools/gn/input_file_manager.h"
9#include "tools/gn/scheduler.h"
10
11Config::Config(const Settings* settings, const Label& label)
12    : Item(settings, label) {
13}
14
15Config::~Config() {
16}
17
18Config* Config::AsConfig() {
19  return this;
20}
21
22const Config* Config::AsConfig() const {
23  return this;
24}
25