Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(508)

Unified Diff: Source/build/scripts/make_style_shorthands.py

Issue 371443003: Merge .in files for css/svg properties into a single file (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/build/scripts/make_style_shorthands.py
diff --git a/Source/build/scripts/make_style_shorthands.py b/Source/build/scripts/make_style_shorthands.py
index d7f2db506899fdbaad8e6f55f08a1806f20f2eee..0ccfc2e3951786d9fb513a6d6a2fbccd145a6921 100755
--- a/Source/build/scripts/make_style_shorthands.py
+++ b/Source/build/scripts/make_style_shorthands.py
@@ -28,51 +28,33 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from collections import defaultdict
-import re
import sys
+import css_properties
import in_generator
-from name_utilities import camelcase_property_name, lower_first
+from name_utilities import lower_first
import template_expander
-def _create_css_property_name_enum_value(property_name):
- return 'CSSProperty' + property_name
-
-
-class StylePropertyShorthandWriter(in_generator.Writer):
+class StylePropertyShorthandWriter(css_properties.CSSProperties):
class_name = 'StylePropertyShorthand'
- defaults = {
- 'longhands': '',
- 'runtimeEnabledShorthand': None,
- }
-
- def __init__(self, in_files):
- super(StylePropertyShorthandWriter, self).__init__(in_files)
+ def __init__(self, in_file_path):
+ super(StylePropertyShorthandWriter, self).__init__(in_file_path)
self._outputs = {
('StylePropertyShorthand.cpp'): self.generate_style_property_shorthand_cpp,
('StylePropertyShorthand.h'): self.generate_style_property_shorthand_h}
- self._properties = self.in_file.name_dictionaries
self._longhand_dictionary = defaultdict(list)
- for property in self._properties:
- cc = camelcase_property_name(property['name'])
- property['property_id'] = _create_css_property_name_enum_value(cc)
- cc = lower_first(cc)
- property['camel_case_name'] = cc
- longhands = property['longhands'].split(';')
- property['camel_case_longhands'] = list()
- for longhand in longhands:
- longhand = camelcase_property_name(longhand)
- longhand = _create_css_property_name_enum_value(longhand)
- property['camel_case_longhands'].append(longhand)
+ self._properties = {property_id: property for property_id, property in self._properties.items() if property['longhands']}
Nils Barth (inactive) 2014/07/07 16:43:28 dict()
+
+ for property in self._properties.values():
+ property['camel_case_longhands'] = map(self._css_name_to_enum, property['longhands'].split(';'))
Nils Barth (inactive) 2014/07/07 16:43:28 list comp
+ if property['runtime_enabled_shorthand']:
+ property['runtime_enabled_shorthand'] = lower_first(property['runtime_enabled_shorthand'])
Nils Barth (inactive) 2014/07/07 16:43:28 FWIW, if special-cased None in lower_first, could
+ for longhand in property['camel_case_longhands']:
self._longhand_dictionary[longhand].append(property)
- if property['runtimeEnabledShorthand'] is not None:
- lowerFirstConditional = lower_first(property['runtimeEnabledShorthand'])
- property['runtime_conditional_getter'] = '%sEnabled' % lowerFirstConditional
- self._properties = dict((property['property_id'], property) for property in self._properties)
@template_expander.use_jinja('StylePropertyShorthand.cpp.tmpl')
def generate_style_property_shorthand_cpp(self):

Powered by Google App Engine
This is Rietveld 408576698