| Index: tools/gn/variables.cc
|
| diff --git a/tools/gn/variables.cc b/tools/gn/variables.cc
|
| index 81bb7e3ee535c495ed80f318b5591eb6a3ea250b..e0a7445f71972527c0ec45d3b4cf5ebc5f1965d3 100644
|
| --- a/tools/gn/variables.cc
|
| +++ b/tools/gn/variables.cc
|
| @@ -473,6 +473,16 @@ const char kAssertNoDeps_Help[] =
|
| " ]\n"
|
| " }\n";
|
|
|
| +extern const char kBinaryCompress[] = "binary_compress";
|
| +extern const char kBinaryCompress_HelpShort[] =
|
| + "binary_compress: Process the bundle_data with binary compression.";
|
| +extern const char kBinaryCompress_Help[] =
|
| + "binary_compress: Process the bundle_data with binary compression.\n"
|
| + "\n"
|
| + " A boolean to indicate whether the bundle_data sources should be\n"
|
| + " processed into binary data. This applies to .strings files and\n"
|
| + " .plist files.";
|
| +
|
| const char kBundleRootDir[] = "bundle_root_dir";
|
| const char kBundleRootDir_HelpShort[] =
|
| "bundle_root_dir: Expansion of {{bundle_root_dir}} in create_bundle.";
|
| @@ -1560,6 +1570,7 @@ const VariableInfoMap& GetTargetVariables() {
|
| INSERT_VARIABLE(Args)
|
| INSERT_VARIABLE(Asmflags)
|
| INSERT_VARIABLE(AssertNoDeps)
|
| + INSERT_VARIABLE(BinaryCompress);
|
| INSERT_VARIABLE(BundleRootDir)
|
| INSERT_VARIABLE(BundleResourcesDir)
|
| INSERT_VARIABLE(BundleExecutableDir)
|
|
|