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

Unified Diff: tools/gn/command_desc.cc

Issue 1751903003: Add "bundle_data" target as first step for adding bundle support to gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-typos
Patch Set: Rebase Created 4 years, 10 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_target_generator.cc ('k') | tools/gn/functions.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 27b1d01d45f1ecdb8449599814cef251afbbad7b..801055b0b13e8c027c35a88848a92989b1784f83 100644
--- a/tools/gn/command_desc.cc
+++ b/tools/gn/command_desc.cc
@@ -684,7 +684,8 @@ int RunDesc(const std::vector<std::string>& args) {
target->output_type() != Target::GROUP &&
target->output_type() != Target::COPY_FILES &&
target->output_type() != Target::ACTION &&
- target->output_type() != Target::ACTION_FOREACH;
+ target->output_type() != Target::ACTION_FOREACH &&
+ target->output_type() != Target::BUNDLE_DATA;
// Generally we only want to display toolchains on labels when the toolchain
// is different than the default one for this target (which we always print
« no previous file with comments | « tools/gn/bundle_data_target_generator.cc ('k') | tools/gn/functions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698