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

Side by Side Diff: tools/gn/setup.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_SETUP_H_ 5 #ifndef TOOLS_GN_SETUP_H_
6 #define TOOLS_GN_SETUP_H_ 6 #define TOOLS_GN_SETUP_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h"
11 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "tools/gn/build_settings.h" 13 #include "tools/gn/build_settings.h"
14 #include "tools/gn/builder.h" 14 #include "tools/gn/builder.h"
15 #include "tools/gn/label_pattern.h" 15 #include "tools/gn/label_pattern.h"
16 #include "tools/gn/loader.h" 16 #include "tools/gn/loader.h"
17 #include "tools/gn/scheduler.h" 17 #include "tools/gn/scheduler.h"
18 #include "tools/gn/scope.h" 18 #include "tools/gn/scope.h"
19 #include "tools/gn/settings.h" 19 #include "tools/gn/settings.h"
20 #include "tools/gn/token.h" 20 #include "tools/gn/token.h"
21 #include "tools/gn/toolchain.h" 21 #include "tools/gn/toolchain.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // this around for the entire run so that Values can blame to the command 158 // this around for the entire run so that Values can blame to the command
159 // line when we issue errors about them. 159 // line when we issue errors about them.
160 scoped_ptr<InputFile> args_input_file_; 160 scoped_ptr<InputFile> args_input_file_;
161 std::vector<Token> args_tokens_; 161 std::vector<Token> args_tokens_;
162 scoped_ptr<ParseNode> args_root_; 162 scoped_ptr<ParseNode> args_root_;
163 163
164 DISALLOW_COPY_AND_ASSIGN(Setup); 164 DISALLOW_COPY_AND_ASSIGN(Setup);
165 }; 165 };
166 166
167 #endif // TOOLS_GN_SETUP_H_ 167 #endif // TOOLS_GN_SETUP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698