Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: tools/gn/command_desc.cc

Issue 2060273002: [GN] Add support for code signing to "create_bundle" targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios-strings-binary
Patch Set: Remove superfluous \n Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/bundle_data.cc ('k') | tools/gn/create_bundle_target_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/command_desc.cc
diff --git a/tools/gn/command_desc.cc b/tools/gn/command_desc.cc
index f2371e9d7cb5a8591681819956cf39309e925b4f..d1edfe487b42baadd4e1cdfac511125b1a582a93 100644
--- a/tools/gn/command_desc.cc
+++ b/tools/gn/command_desc.cc
@@ -337,7 +337,7 @@ void PrintOutputs(const Target* target, bool display_header) {
std::vector<SourceFile> output_files;
target->bundle_data().GetOutputsAsSourceFiles(target->settings(),
&output_files);
- PrintFileList(output_files, "", true, false);
+ PrintFileList(output_files, std::string(), true, false);
} else {
const SubstitutionList& outputs = target->action_values().outputs();
if (!outputs.required_types().empty()) {
@@ -355,7 +355,7 @@ void PrintOutputs(const Target* target, bool display_header) {
std::vector<SourceFile> output_files;
SubstitutionWriter::ApplyListToSources(target->settings(), outputs,
target->sources(), &output_files);
- PrintFileList(output_files, "", true, false);
+ PrintFileList(output_files, std::string(), true, false);
}
}
« no previous file with comments | « tools/gn/bundle_data.cc ('k') | tools/gn/create_bundle_target_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698