Index: tools/gn/ninja_create_bundle_target_writer.cc |
diff --git a/tools/gn/ninja_create_bundle_target_writer.cc b/tools/gn/ninja_create_bundle_target_writer.cc |
index 3b87129f11892a7b70a33e4b03937aafc0fefaec..77e05b20e28ef242634d681e214fa4084fc21479 100644 |
--- a/tools/gn/ninja_create_bundle_target_writer.cc |
+++ b/tools/gn/ninja_create_bundle_target_writer.cc |
@@ -164,6 +164,9 @@ void NinjaCreateBundleTargetWriter::WriteCompileAssetsCatalogStep( |
out_ << " | "; |
path_output_.WriteFile(out_, input_dep); |
out_ << std::endl; |
+ |
+ out_ << " product_type = " << target_->bundle_data().product_type() |
+ << std::endl; |
} |
OutputFile |