| 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/ninja_target_writer.h" | 5 #include "tools/gn/ninja_target_writer.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| 11 #include "tools/gn/err.h" | 11 #include "tools/gn/err.h" |
| 12 #include "tools/gn/escape.h" | 12 #include "tools/gn/escape.h" |
| 13 #include "tools/gn/filesystem_utils.h" | 13 #include "tools/gn/filesystem_utils.h" |
| 14 #include "tools/gn/ninja_action_target_writer.h" | 14 #include "tools/gn/ninja_action_target_writer.h" |
| 15 #include "tools/gn/ninja_binary_target_writer.h" | 15 #include "tools/gn/ninja_binary_target_writer.h" |
| 16 #include "tools/gn/ninja_bundle_data_target_writer.h" |
| 16 #include "tools/gn/ninja_copy_target_writer.h" | 17 #include "tools/gn/ninja_copy_target_writer.h" |
| 17 #include "tools/gn/ninja_group_target_writer.h" | 18 #include "tools/gn/ninja_group_target_writer.h" |
| 18 #include "tools/gn/ninja_utils.h" | 19 #include "tools/gn/ninja_utils.h" |
| 19 #include "tools/gn/output_file.h" | 20 #include "tools/gn/output_file.h" |
| 20 #include "tools/gn/scheduler.h" | 21 #include "tools/gn/scheduler.h" |
| 21 #include "tools/gn/string_utils.h" | 22 #include "tools/gn/string_utils.h" |
| 22 #include "tools/gn/substitution_writer.h" | 23 #include "tools/gn/substitution_writer.h" |
| 23 #include "tools/gn/target.h" | 24 #include "tools/gn/target.h" |
| 24 #include "tools/gn/trace.h" | 25 #include "tools/gn/trace.h" |
| 25 | 26 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 50 if (g_scheduler->verbose_logging()) | 51 if (g_scheduler->verbose_logging()) |
| 51 g_scheduler->Log("Writing", FilePathToUTF8(ninja_file)); | 52 g_scheduler->Log("Writing", FilePathToUTF8(ninja_file)); |
| 52 | 53 |
| 53 base::CreateDirectory(ninja_file.DirName()); | 54 base::CreateDirectory(ninja_file.DirName()); |
| 54 | 55 |
| 55 // It's ridiculously faster to write to a string and then write that to | 56 // It's ridiculously faster to write to a string and then write that to |
| 56 // disk in one operation than to use an fstream here. | 57 // disk in one operation than to use an fstream here. |
| 57 std::stringstream file; | 58 std::stringstream file; |
| 58 | 59 |
| 59 // Call out to the correct sub-type of writer. | 60 // Call out to the correct sub-type of writer. |
| 60 if (target->output_type() == Target::COPY_FILES) { | 61 if (target->output_type() == Target::BUNDLE_DATA) { |
| 62 NinjaBundleDataTargetWriter writer(target, file); |
| 63 writer.Run(); |
| 64 } else if (target->output_type() == Target::COPY_FILES) { |
| 61 NinjaCopyTargetWriter writer(target, file); | 65 NinjaCopyTargetWriter writer(target, file); |
| 62 writer.Run(); | 66 writer.Run(); |
| 63 } else if (target->output_type() == Target::ACTION || | 67 } else if (target->output_type() == Target::ACTION || |
| 64 target->output_type() == Target::ACTION_FOREACH) { | 68 target->output_type() == Target::ACTION_FOREACH) { |
| 65 NinjaActionTargetWriter writer(target, file); | 69 NinjaActionTargetWriter writer(target, file); |
| 66 writer.Run(); | 70 writer.Run(); |
| 67 } else if (target->output_type() == Target::GROUP) { | 71 } else if (target->output_type() == Target::GROUP) { |
| 68 NinjaGroupTargetWriter writer(target, file); | 72 NinjaGroupTargetWriter writer(target, file); |
| 69 writer.Run(); | 73 writer.Run(); |
| 70 } else if (target->IsBinary()) { | 74 } else if (target->IsBinary()) { |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 << GetNinjaRulePrefixForToolchain(settings_) | 276 << GetNinjaRulePrefixForToolchain(settings_) |
| 273 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP); | 277 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP); |
| 274 path_output_.WriteFiles(out_, files); | 278 path_output_.WriteFiles(out_, files); |
| 275 | 279 |
| 276 if (!order_only_deps.empty()) { | 280 if (!order_only_deps.empty()) { |
| 277 out_ << " ||"; | 281 out_ << " ||"; |
| 278 path_output_.WriteFiles(out_, order_only_deps); | 282 path_output_.WriteFiles(out_, order_only_deps); |
| 279 } | 283 } |
| 280 out_ << std::endl; | 284 out_ << std::endl; |
| 281 } | 285 } |
| OLD | NEW |