OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef TOOLS_GN_COMMANDS_H_ | |
6 #define TOOLS_GN_COMMANDS_H_ | |
7 | |
8 #include <string> | |
9 #include <vector> | |
10 | |
11 // The different commands we have, returns the value we should return from | |
12 // main(). | |
13 int RunDepsCommand(const std::vector<std::string>& args); | |
14 int RunDescCommand(const std::vector<std::string>& args); | |
15 int RunGenCommand(const std::vector<std::string>& args); | |
16 int RunTreeCommand(const std::vector<std::string>& args); | |
17 | |
18 #endif // TOOLS_GN_COMMANDS_H_ | |
OLD | NEW |