| Index: core/scripts/make_css_value_keywords.py
|
| ===================================================================
|
| --- core/scripts/make_css_value_keywords.py (revision 23517)
|
| +++ core/scripts/make_css_value_keywords.py (working copy)
|
| @@ -90,6 +90,9 @@
|
|
|
| def __init__(self, file_paths, enabled_conditions):
|
| in_generator.Writer.__init__(self, file_paths, enabled_conditions)
|
| + self._outputs = {(self.class_name + ".h"): self.generate_header,
|
| + (self.class_name + ".cpp"): self.generate_implementation,
|
| + }
|
|
|
| all_properties = self.in_file.name_dictionaries
|
| self._value_keywords = filter(lambda property: not property['condition'] or property['condition'] in self._enabled_conditions, all_properties)
|
|
|