| OLD | NEW |
| (Empty) |
| 1 from recipe_engine.recipe_api import Property | |
| 2 | |
| 3 DEPS = [ | |
| 4 'gclient', | |
| 5 'recipe_engine/json', | |
| 6 'recipe_engine/path', | |
| 7 'recipe_engine/platform', | |
| 8 'recipe_engine/properties', | |
| 9 'recipe_engine/python', | |
| 10 'recipe_engine/raw_io', | |
| 11 'rietveld', | |
| 12 'recipe_engine/step', | |
| 13 ] | |
| 14 | |
| 15 PROPERTIES = { | |
| 16 'deps_revision_overrides': Property(default={}), | |
| 17 'event_patchSet_ref': Property(param_name="event_patchSet_ref", default=None), | |
| 18 'issue': Property(default=None), | |
| 19 'fail_patch': Property(default=False), | |
| 20 'failure_type': Property(default=None), | |
| 21 'parent_got_revision': Property(default=None), | |
| 22 'patchset': Property(default=None), | |
| 23 'patch_url': Property(default=None), | |
| 24 'rietveld': Property(default=None), | |
| 25 'repository': Property(default=None), | |
| 26 'revision': Property(default=None), | |
| 27 } | |
| OLD | NEW |