| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TOOLS_GN_TEST_WITH_SCOPE_H_ | 5 #ifndef TOOLS_GN_TEST_WITH_SCOPE_H_ |
| 6 #define TOOLS_GN_TEST_WITH_SCOPE_H_ | 6 #define TOOLS_GN_TEST_WITH_SCOPE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
| 11 #include "tools/gn/build_settings.h" | 11 #include "tools/gn/build_settings.h" |
| 12 #include "tools/gn/err.h" | 12 #include "tools/gn/err.h" |
| 13 #include "tools/gn/input_file.h" | 13 #include "tools/gn/input_file.h" |
| 14 #include "tools/gn/parse_tree.h" | 14 #include "tools/gn/parse_tree.h" |
| 15 #include "tools/gn/scope.h" | 15 #include "tools/gn/scope.h" |
| 16 #include "tools/gn/scope_per_file_provider.h" | 16 #include "tools/gn/scope_per_file_provider.h" |
| 17 #include "tools/gn/settings.h" | 17 #include "tools/gn/settings.h" |
| 18 #include "tools/gn/target.h" | 18 #include "tools/gn/target.h" |
| 19 #include "tools/gn/token.h" | 19 #include "tools/gn/token.h" |
| 20 #include "tools/gn/toolchain.h" | 20 #include "tools/gn/toolchain.h" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // default to public visibility. | 101 // default to public visibility. |
| 102 class TestTarget : public Target { | 102 class TestTarget : public Target { |
| 103 public: | 103 public: |
| 104 TestTarget(TestWithScope& setup, | 104 TestTarget(TestWithScope& setup, |
| 105 const std::string& label_string, | 105 const std::string& label_string, |
| 106 Target::OutputType type); | 106 Target::OutputType type); |
| 107 ~TestTarget() override; | 107 ~TestTarget() override; |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 #endif // TOOLS_GN_TEST_WITH_SCOPE_H_ | 110 #endif // TOOLS_GN_TEST_WITH_SCOPE_H_ |
| OLD | NEW |