| 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 #include "tools/gn/standard_out.h" | 5 #include "tools/gn/standard_out.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <vector> | 9 #include <vector> |
| 8 | 10 |
| 9 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 10 #include "base/logging.h" | 12 #include "base/logging.h" |
| 11 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
| 12 #include "base/strings/string_split.h" | 14 #include "base/strings/string_split.h" |
| 13 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 14 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 15 #include "tools/gn/switches.h" | 17 #include "tools/gn/switches.h" |
| 16 | 18 |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 } | 276 } |
| 275 } | 277 } |
| 276 | 278 |
| 277 OutputString(line + "\n", dec); | 279 OutputString(line + "\n", dec); |
| 278 } | 280 } |
| 279 | 281 |
| 280 if (is_markdown && in_body) | 282 if (is_markdown && in_body) |
| 281 OutputString("\n```\n"); | 283 OutputString("\n```\n"); |
| 282 } | 284 } |
| 283 | 285 |
| OLD | NEW |