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

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

Issue 2002383002: Avoid string allocation when parsing CSSPrimitiveValue::UnitType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..bd07ff1958f4f97b6d39b8477270a1cb49c8045a
--- /dev/null
+++ b/third_party/WebKit/Source/build/scripts/make_css_primitive_value_unit_trie.py
@@ -0,0 +1,35 @@
+#!/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
+
+
+class UnitTrieWriter(in_generator.Writer):
+ defaults = {
+ 'unit_type': None
+ }
+
+ 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 {
+ 'length_tries': trie_builder.trie_list_by_str_length(self._units)
+ }
+
+
+if __name__ == '__main__':
+ in_generator.Maker(UnitTrieWriter).main(sys.argv)
« no previous file with comments | « no previous file | third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698