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

Unified Diff: tools/gn/variables.cc

Issue 1386783003: [GN]: Support for loadable modules (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unit tests Created 5 years, 2 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
« tools/gn/ninja_toolchain_writer.cc ('K') | « tools/gn/variables.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/variables.cc
diff --git a/tools/gn/variables.cc b/tools/gn/variables.cc
index d4e978d334a6e195d89583cee94ccab79609a0f6..75254e3e501add402222cecb4021988b7670d0ab 100644
--- a/tools/gn/variables.cc
+++ b/tools/gn/variables.cc
@@ -611,6 +611,22 @@ const char kConsole_Help[] =
" console = true\n"
" }\n";
+const char kDarwinBundle[] = "darwin_bundle";
+const char kDarwinBundle_HelpShort[] =
+ "darwin_bundle: [boolean] Produce a bundle on Darwin platforms";
+const char kDarwinBundle_Help[] =
+ "darwin_bundle: Produce an .app or .framework directory.\n"
+ "\n"
+ " Bundles on Darwin platforms are directories with standardized\n"
+ " hierarchical structures that hold executable code and the resources\n"
+ " used by that code.\n"
+ "\n"
+ "Example\n"
+ "\n"
+ " executable(\"combustible_lemons_app\") {\n"
+ " darwin_bundle = true\n"
+ " }\n";
+
const char kData[] = "data";
const char kData_HelpShort[] =
"data: [file list] Runtime data file dependencies.";
« tools/gn/ninja_toolchain_writer.cc ('K') | « tools/gn/variables.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698