_GCLIENT_SCHEMA = schema.Schema({ # List of host names from which dependencies are allowed (whitelist). # NOTE: when not present, all hosts are allowed. # NOTE: scoped to current DEPS file, not recursive. schema.Optional('allowed_hosts'): [schema.Optional(basestring)], # Mapping from paths to repo and revision to check out under that path. # Applying this mapping to the on-disk checkout is the main purpose # of gclient, and also why the config file is called DEPS. # # The following functions are allowed: # # Var(): allows variable substitution (either from 'vars' dict below, # or command-line override) schema.Optional('deps'): _GCLIENT_DEPS_SCHEMA, # Similar to 'deps' (see above) - also keyed by OS (e.g. 'linux'). # Also see 'target_os'. schema.Optional('deps_os'): { schema.Optional(basestring): _GCLIENT_DEPS_SCHEMA, }, # Path to GN args file to write selected variables. schema.Optional('gclient_gn_args_file'): basestring, # Subset of variables to write to the GN args file (see above). schema.Optional('gclient_gn_args'): [schema.Optional(basestring)], # Hooks executed after gclient sync (unless suppressed), or explicitly # on gclient hooks. See _GCLIENT_HOOKS_SCHEMA for details. # Also see 'pre_deps_hooks'. schema.Optional('hooks'): _GCLIENT_HOOKS_SCHEMA, # Similar to 'hooks', also keyed by OS. schema.Optional('hooks_os'): { schema.Optional(basestring): _GCLIENT_HOOKS_SCHEMA }, # Rules which #includes are allowed in the directory. # Also see 'skip_child_includes' and 'specific_include_rules'. schema.Optional('include_rules'): [schema.Optional(basestring)], # Hooks executed before processing DEPS. See 'hooks' for more details. schema.Optional('pre_deps_hooks'): _GCLIENT_HOOKS_SCHEMA, # Recursion limit for nested DEPS. schema.Optional('recursion'): int, # Whitelists deps for which recursion should be enabled. schema.Optional('recursedeps'): [ schema.Optional(schema.Or( basestring, (basestring, basestring), [basestring, basestring] )), ], # Blacklists directories for checking 'include_rules'. schema.Optional('skip_child_includes'): [schema.Optional(basestring)], # Mapping from paths to include rules specific for that path. # See 'include_rules' for more details. schema.Optional('specific_include_rules'): { schema.Optional(basestring): [basestring] }, # List of additional OS names to consider when selecting dependencies # from deps_os. schema.Optional('target_os'): [schema.Optional(basestring)], # For recursed-upon sub-dependencies, check out their own dependencies # relative to the paren't path, rather than relative to the .gclient file. schema.Optional('use_relative_paths'): bool, # Variables that can be referenced using Var() - see 'deps'. schema.Optional('vars'): { schema.Optional(basestring): schema.Or(basestring, bool), }, })
def validate(d): schema.Schema(dict_schema).validate(dict(d)) return True