Lines Matching refs:dependencies
8 """Parse a DEPS file and git checkout all of the dependencies.
65 'Usage: run to grab dependencies, with optional platform support:\n')
189 """Grab dependencies, with optional platform support.
205 dependencies = deps_file['deps'].copy()
209 dependencies.update(value)
212 # Add OS-specific dependencies
214 dependencies.update(os_specific_dependencies[os_name])
215 for directory in dependencies:
216 for other_dir in dependencies:
220 for directory in sorted(dependencies):
221 if not isinstance(dependencies[directory], str):
225 if '@' in dependencies[directory]:
226 repo, commithash = dependencies[directory].split('@', 1)