Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / tools / gn / config.cc
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
11 Config::Config(const Settings* settings, const Label& label)
12     : Item(settings, label) {
13 }
14
15 Config::~Config() {
16 }
17
18 Config* Config::AsConfig() {
19   return this;
20 }
21
22 const Config* Config::AsConfig() const {
23   return this;
24 }