Home
last modified time | relevance | path

Searched refs:all_resources (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/trace-viewer/build/
Dparse_deps.py200 def resolve(self, all_resources, resource_finder): argument
201 if "scripts" not in all_resources:
202 all_resources["scripts"] = {}
203 if "style_sheets" not in all_resources:
204 all_resources["style_sheets"] = {}
205 if "raw_scripts" not in all_resources:
206 all_resources["raw_scripts"] = {}
211 if name in all_resources["scripts"]:
212 assert all_resources["scripts"][name].contents
213 self.dependent_modules.append(all_resources["scripts"][name])
[all …]
Dparse_deps_test.py246 all_resources = {}
247 x_module.resolve(all_resources, resource_finder)
249 self.assertEquals([all_resources['scripts']['y'],
250 all_resources['scripts']['z']],
257 self.assertEquals([all_resources['scripts']['z'],
258 all_resources['scripts']['y'],