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

Unified Diff: third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py

Issue 1938343002: Generate a series of nested switch statements to parse CSSPrimitiveValue units. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove extra imports Created 4 years, 7 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: third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py b/third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py
new file mode 100755
index 0000000000000000000000000000000000000000..642d71a821c6487ae5d9ff533a2f8f4a51be0645
--- /dev/null
+++ b/third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import sys
+
+import in_generator
+import trie_builder
+import template_expander
+
+import make_element_lookup_trie
+
+
+class UnitTrieWriter(in_generator.Writer):
+ defaults = {
+ 'unit_type': None
+ }
+ default_parameters = {
+ 'default_value': 0
+ }
+
+ def __init__(self, in_file_paths):
+ super(UnitTrieWriter, self).__init__(in_file_paths)
+
+ self._units = {entry['name']: entry['unit_type'] for entry in self.in_file.name_dictionaries}
+
+ self._outputs = {
+ 'CSSPrimitiveValueUnitTrie.cpp': self.generate_implementation
+ }
+
+ @template_expander.use_jinja('CSSPrimitiveValueUnitTrie.cpp.tmpl')
+ def generate_implementation(self):
+ return {
+ 'default_value': self.in_file.parameters["default_value"],
+ 'length_tries': trie_builder.trie_list_by_str_length(self._units)
+ }
+
+
+if __name__ == '__main__':
+ in_generator.Maker(UnitTrieWriter).main(sys.argv)

Powered by Google App Engine
This is Rietveld 408576698