Disable AccessibilityAriaGrabbed due to flakiness
[chromium-blink-merge.git] / tools / gn / config.h
blob543d660418776b4d35e281c7e53f9b8c56837b25
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.
5 #ifndef TOOLS_GN_CONFIG_H_
6 #define TOOLS_GN_CONFIG_H_
8 #include "base/macros.h"
9 #include "tools/gn/config_values.h"
10 #include "tools/gn/item.h"
12 // Represents a named config in the dependency graph.
13 class Config : public Item {
14 public:
15 Config(const Settings* settings, const Label& label);
16 ~Config() override;
18 Config* AsConfig() override;
19 const Config* AsConfig() const override;
21 ConfigValues& config_values() { return config_values_; }
22 const ConfigValues& config_values() const { return config_values_; }
24 private:
25 ConfigValues config_values_;
27 DISALLOW_COPY_AND_ASSIGN(Config);
30 #endif // TOOLS_GN_CONFIG_H_