| 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_INPUT_FILE_MANAGER_H_ | 5 #ifndef TOOLS_GN_INPUT_FILE_MANAGER_H_ |
| 6 #define TOOLS_GN_INPUT_FILE_MANAGER_H_ | 6 #define TOOLS_GN_INPUT_FILE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/callback.h" | 12 #include "base/callback.h" |
| 14 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 15 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/synchronization/lock.h" | 17 #include "base/synchronization/lock.h" |
| 18 #include "base/synchronization/waitable_event.h" | 18 #include "base/synchronization/waitable_event.h" |
| 19 #include "tools/gn/build_settings.h" | 19 #include "tools/gn/build_settings.h" |
| 20 #include "tools/gn/input_file.h" | 20 #include "tools/gn/input_file.h" |
| 21 #include "tools/gn/parse_tree.h" | 21 #include "tools/gn/parse_tree.h" |
| 22 #include "tools/gn/settings.h" | 22 #include "tools/gn/settings.h" |
| 23 | 23 |
| 24 class Err; | 24 class Err; |
| 25 class LocationRange; | 25 class LocationRange; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 // | 147 // |
| 148 // See AddDynamicInput(). | 148 // See AddDynamicInput(). |
| 149 // | 149 // |
| 150 // Owning pointers. | 150 // Owning pointers. |
| 151 std::vector<InputFileData*> dynamic_inputs_; | 151 std::vector<InputFileData*> dynamic_inputs_; |
| 152 | 152 |
| 153 DISALLOW_COPY_AND_ASSIGN(InputFileManager); | 153 DISALLOW_COPY_AND_ASSIGN(InputFileManager); |
| 154 }; | 154 }; |
| 155 | 155 |
| 156 #endif // TOOLS_GN_INPUT_FILE_MANAGER_H_ | 156 #endif // TOOLS_GN_INPUT_FILE_MANAGER_H_ |
| OLD | NEW |