| 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" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 if (g_scheduler->verbose_logging()) | 50 if (g_scheduler->verbose_logging()) |
| 51 g_scheduler->Log("Writing", FilePathToUTF8(ninja_file)); | 51 g_scheduler->Log("Writing", FilePathToUTF8(ninja_file)); |
| 52 | 52 |
| 53 base::CreateDirectory(ninja_file.DirName()); | 53 base::CreateDirectory(ninja_file.DirName()); |
| 54 | 54 |
| 55 // It's ridiculously faster to write to a string and then write that to | 55 // 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. | 56 // disk in one operation than to use an fstream here. |
| 57 std::stringstream file; | 57 std::stringstream file; |
| 58 | 58 |
| 59 // Call out to the correct sub-type of writer. | 59 // Call out to the correct sub-type of writer. |
| 60 if (target->output_type() == Target::COPY_FILES) { | 60 if (target->output_type() == Target::COPY_FILES || |
| 61 NinjaCopyTargetWriter writer(target, file); | 61 target->output_type() == Target::COPY_BUNDLE_DATA) { |
| 62 Toolchain::ToolType tool_type = target->output_type() == Target::COPY_FILES |
| 63 ? Toolchain::TYPE_COPY |
| 64 : Toolchain::TYPE_COPY_BUNDLE_DATA; |
| 65 NinjaCopyTargetWriter writer(target, file, tool_type); |
| 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()) { |
| 71 NinjaBinaryTargetWriter writer(target, file); | 75 NinjaBinaryTargetWriter writer(target, file); |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 << GetNinjaRulePrefixForToolchain(settings_) | 271 << GetNinjaRulePrefixForToolchain(settings_) |
| 268 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP); | 272 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP); |
| 269 path_output_.WriteFiles(out_, files); | 273 path_output_.WriteFiles(out_, files); |
| 270 | 274 |
| 271 if (!order_only_deps.empty()) { | 275 if (!order_only_deps.empty()) { |
| 272 out_ << " ||"; | 276 out_ << " ||"; |
| 273 path_output_.WriteFiles(out_, order_only_deps); | 277 path_output_.WriteFiles(out_, order_only_deps); |
| 274 } | 278 } |
| 275 out_ << std::endl; | 279 out_ << std::endl; |
| 276 } | 280 } |
| OLD | NEW |