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

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: up-to-date version of entire patch 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
« no previous file with comments | « Source/build/scripts/make_style_builder.py ('k') | Source/build/scripts/name_utilities.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a384c8c816c252bee47c4c74cdd5ccc636bacdfa..e84de1a59e60cf9f9c625ca0fbee1ef47aea12e6 100755
--- a/Source/build/scripts/make_style_shorthands.py
+++ b/Source/build/scripts/make_style_shorthands.py
@@ -28,47 +28,31 @@
# 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': '',
- }
-
- 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']}
+
+ for property in self._properties.values():
+ property['longhand_property_ids'] = map(css_properties.css_name_to_enum, property['longhands'].split(';'))
+ for longhand in property['longhand_property_ids']:
self._longhand_dictionary[longhand].append(property)
- 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):
« no previous file with comments | « Source/build/scripts/make_style_builder.py ('k') | Source/build/scripts/name_utilities.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698