Lines Matching refs:dep
94 def is_classic_dependency(dep):
95 """Whether dep is a classic dependency that PSA test cases should not use."""
96 if dep.startswith('!'):
97 dep = dep[1:]
98 return dep in CLASSIC_DEPENDENCIES
100 def is_systematic_dependency(dep):
101 """Whether dep is a PSA dependency which is determined systematically."""
102 if dep.startswith('PSA_WANT_ECC_'):
104 return dep.startswith('PSA_WANT_')
178 manual = [dep for dep in dependencies
179 if not (is_systematic_dependency(dep) or
180 is_classic_dependency(dep))]