Index: gclient.py |
diff --git a/gclient.py b/gclient.py |
index ab52cc8eee6098eed83c4ce41dd652606ebf4bea..9ffe5263c654dd29ee5757504efe978f25ef001f 100644 |
--- a/gclient.py |
+++ b/gclient.py |
@@ -455,6 +455,13 @@ class Dependency(gclient_utils.WorkItem, DependencySettings): |
self.recursion_override = local_scope.get('recursion') |
logging.warning( |
'Setting %s recursion to %d.', self.name, self.recursion_limit) |
+ # Check if 'target_os' is present in the DEPS file. If yes, then add OSes |
M-A Ruel
2012/10/23 23:53:30
It's a layering violation. It should only affect i
|
+ # specified to the set of enforced OSes. |
+ if 'target_os' in local_scope: |
+ # Access to a protected member _handle of a client class |
+ # pylint: disable=W0212 |
+ self.root._enforced_os = tuple( |
+ set(local_scope['target_os']).union(self.root._enforced_os)) |
# load os specific dependencies if defined. these dependencies may |
# override or extend the values defined by the 'deps' member. |
if 'deps_os' in local_scope: |