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

Side by Side Diff: tools/gn/tool.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_TOOL_H_ 5 #ifndef TOOLS_GN_TOOL_H_
6 #define TOOLS_GN_TOOL_H_ 6 #define TOOLS_GN_TOOL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h"
11 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h"
12 #include "tools/gn/substitution_list.h" 12 #include "tools/gn/substitution_list.h"
13 #include "tools/gn/substitution_pattern.h" 13 #include "tools/gn/substitution_pattern.h"
14 14
15 class Tool { 15 class Tool {
16 public: 16 public:
17 enum DepsFormat { 17 enum DepsFormat {
18 DEPS_GCC = 0, 18 DEPS_GCC = 0,
19 DEPS_MSVC = 1 19 DEPS_MSVC = 1
20 }; 20 };
21 21
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 SubstitutionPattern rspfile_content_; 192 SubstitutionPattern rspfile_content_;
193 193
194 bool complete_; 194 bool complete_;
195 195
196 SubstitutionBits substitution_bits_; 196 SubstitutionBits substitution_bits_;
197 197
198 DISALLOW_COPY_AND_ASSIGN(Tool); 198 DISALLOW_COPY_AND_ASSIGN(Tool);
199 }; 199 };
200 200
201 #endif // TOOLS_GN_TOOL_H_ 201 #endif // TOOLS_GN_TOOL_H_
OLDNEW
« tools/gn/args.h ('K') | « tools/gn/tokenizer.h ('k') | tools/gn/trace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698