Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: tools/gn/input_file_manager.h

Issue 1280123005: tools/gn: Remove includes of basictypes.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« tools/gn/args.h ('K') | « tools/gn/input_file.h ('k') | tools/gn/ninja_target_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698