Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / tools / gn / group_target_generator.cc
index b2a73d6..64fa920 100644 (file)
@@ -4,6 +4,8 @@
 
 #include "tools/gn/group_target_generator.h"
 
+#include "tools/gn/variables.h"
+
 GroupTargetGenerator::GroupTargetGenerator(
     Target* target,
     Scope* scope,
@@ -19,4 +21,13 @@ void GroupTargetGenerator::DoRun() {
   target_->set_output_type(Target::GROUP);
   // Groups only have the default types filled in by the target generator
   // base class.
+
+  // Before there was a deps/public_deps split, a group acted like all deps
+  // are public. During a transition period, if public_deps is not defined,
+  // treat all deps as public. This should be removed and existing groups
+  // updated to use "public_deps" when needed.
+  if (scope_->GetValue(variables::kDeps, false) &&
+      !scope_->GetValue(variables::kPublicDeps, false)) {
+    std::swap(target_->private_deps(), target_->public_deps());
+  }
 }