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

Unified Diff: tools/gn/function_get_target_outputs.cc

Issue 1606553002: Add support for Mac/iOS application bundles to GN tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: base_unittests builds and pass all tests with GN Created 4 years, 11 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
Index: tools/gn/function_get_target_outputs.cc
diff --git a/tools/gn/function_get_target_outputs.cc b/tools/gn/function_get_target_outputs.cc
index 6e3cf6563ca0dde20ca4c359c5b95ec2a4763ab5..c75250196c6a8eed9d38f825d1281a6094170c14 100644
--- a/tools/gn/function_get_target_outputs.cc
+++ b/tools/gn/function_get_target_outputs.cc
@@ -119,6 +119,7 @@ Value RunGetTargetOutputs(Scope* scope,
std::vector<SourceFile> files;
if (target->output_type() == Target::ACTION ||
target->output_type() == Target::COPY_FILES ||
+ target->output_type() == Target::COPY_BUNDLE_DATA ||
target->output_type() == Target::ACTION_FOREACH) {
target->action_values().GetOutputsAsSourceFiles(target, &files);
} else {

Powered by Google App Engine
This is Rietveld 408576698