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

Unified Diff: tools/gn/functions_target.cc

Issue 1752033002: Add "create_bundle" target in order to support bundle with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-bundle-data
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
Index: tools/gn/functions_target.cc
diff --git a/tools/gn/functions_target.cc b/tools/gn/functions_target.cc
index 7a293c7c406f0642734ed802760a74d893510622..f2a46b6efb0d38ea02033dabfe188bf58f9fc85b 100644
--- a/tools/gn/functions_target.cc
+++ b/tools/gn/functions_target.cc
@@ -264,6 +264,27 @@ Value RunBundleData(Scope* scope,
block, err);
}
+// create_bundle ---------------------------------------------------------------
+
+const char kCreateBundle[] = "create_bundle";
+const char kCreateBundle_HelpShort[] =
+ "create_bundle: Build an OS X / iOS bundle.";
+const char kCreateBundle_Help[] =
+ "create_bundle: Build an OS X / iOS bundle.\n"
+ "\n"
+ " This target create an OS X / iOS bundle copying file listed as sources\n"
brettw 2016/03/02 21:12:42 This sentence doesn't make sense to me. Can you ex
sdefresne 2016/03/07 20:47:35 Done.
+ " of any \"bundle_data\" target it recursively depends (stopping at any\n"
+ " \"create_bundle\" target).\n";
brettw 2016/03/02 21:12:42 The other target types have a variable section at
sdefresne 2016/03/07 20:47:35 Done.
+
+Value RunCreateBundle(Scope* scope,
+ const FunctionCallNode* function,
+ const std::vector<Value>& args,
+ BlockNode* block,
+ Err* err) {
+ return ExecuteGenericTarget(functions::kCreateBundle, scope, function, args,
+ block, err);
+}
+
// copy ------------------------------------------------------------------------
const char kCopy[] = "copy";

Powered by Google App Engine
This is Rietveld 408576698