| 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_COMMANDS_H_ | 5 #ifndef TOOLS_GN_COMMANDS_H_ |
| 6 #define TOOLS_GN_COMMANDS_H_ | 6 #define TOOLS_GN_COMMANDS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
| 14 #include "base/values.h" |
| 14 #include "tools/gn/target.h" | 15 #include "tools/gn/target.h" |
| 15 #include "tools/gn/unique_vector.h" | 16 #include "tools/gn/unique_vector.h" |
| 16 | 17 |
| 17 class BuildSettings; | 18 class BuildSettings; |
| 18 class Config; | 19 class Config; |
| 19 class LabelPattern; | 20 class LabelPattern; |
| 20 class Setup; | 21 class Setup; |
| 21 class SourceFile; | 22 class SourceFile; |
| 22 class Target; | 23 class Target; |
| 23 class Toolchain; | 24 class Toolchain; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 " accordingly. When unspecified, the target's testonly flags are\n"\ | 173 " accordingly. When unspecified, the target's testonly flags are\n"\ |
| 173 " ignored.\n" | 174 " ignored.\n" |
| 174 | 175 |
| 175 // Applies any testonly and type filters specified on the command line, | 176 // Applies any testonly and type filters specified on the command line, |
| 176 // and prints the targets as specified by the --as command line flag. | 177 // and prints the targets as specified by the --as command line flag. |
| 177 // | 178 // |
| 178 // If indent is true, the results will be indented two spaces. | 179 // If indent is true, the results will be indented two spaces. |
| 179 // | 180 // |
| 180 // The vector will be modified so that only the printed targets will remain. | 181 // The vector will be modified so that only the printed targets will remain. |
| 181 void FilterAndPrintTargets(bool indent, std::vector<const Target*>* targets); | 182 void FilterAndPrintTargets(bool indent, std::vector<const Target*>* targets); |
| 183 void FilterAndPrintTargets(std::vector<const Target*>* targets, |
| 184 base::ListValue* out); |
| 185 |
| 182 void FilterAndPrintTargetSet(bool indent, | 186 void FilterAndPrintTargetSet(bool indent, |
| 183 const std::set<const Target*>& targets); | 187 const std::set<const Target*>& targets); |
| 188 void FilterAndPrintTargetSet(const std::set<const Target*>& targets, |
| 189 base::ListValue* out); |
| 184 | 190 |
| 185 // Extra help from command_check.cc | 191 // Extra help from command_check.cc |
| 186 extern const char kNoGnCheck_Help[]; | 192 extern const char kNoGnCheck_Help[]; |
| 187 | 193 |
| 188 } // namespace commands | 194 } // namespace commands |
| 189 | 195 |
| 190 #endif // TOOLS_GN_COMMANDS_H_ | 196 #endif // TOOLS_GN_COMMANDS_H_ |
| OLD | NEW |