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

Side by Side Diff: Source/core/scripts/make_runtime_features.py

Issue 22482004: Add support for the object-fit CSS property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase for landing Created 7 years, 4 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 unified diff | Download patch
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 for dependant_name in feature['depends_on']: 66 for dependant_name in feature['depends_on']:
67 enabled_condition += " && is%sEnabled" % dependant_name 67 enabled_condition += " && is%sEnabled" % dependant_name
68 feature['enabled_condition'] = enabled_condition 68 feature['enabled_condition'] = enabled_condition
69 self._non_custom_features = filter(lambda feature: not feature['custom'] , self._features) 69 self._non_custom_features = filter(lambda feature: not feature['custom'] , self._features)
70 70
71 def _lower_first(self, string): 71 def _lower_first(self, string):
72 lowered = string[0].lower() + string[1:] 72 lowered = string[0].lower() + string[1:]
73 lowered = lowered.replace("cSS", "css") 73 lowered = lowered.replace("cSS", "css")
74 lowered = lowered.replace("iME", "ime") 74 lowered = lowered.replace("iME", "ime")
75 lowered = lowered.replace("hTML", "html") 75 lowered = lowered.replace("hTML", "html")
76 lowered = lowered.replace("sVG", "svg")
76 lowered = lowered.replace("wOFF", "woff") 77 lowered = lowered.replace("wOFF", "woff")
77 return lowered 78 return lowered
78 79
79 def _feature_sets(self): 80 def _feature_sets(self):
80 # Another way to think of the status levels is as "sets of features" 81 # Another way to think of the status levels is as "sets of features"
81 # which is how we're referring to them in this generator. 82 # which is how we're referring to them in this generator.
82 return self.valid_values['status'] 83 return self.valid_values['status']
83 84
84 @template_expander.use_jinja(class_name + ".h.tmpl") 85 @template_expander.use_jinja(class_name + ".h.tmpl")
85 def generate_header(self): 86 def generate_header(self):
86 return { 87 return {
87 'features': self._features, 88 'features': self._features,
88 'feature_sets': self._feature_sets(), 89 'feature_sets': self._feature_sets(),
89 } 90 }
90 91
91 @template_expander.use_jinja(class_name + ".cpp.tmpl") 92 @template_expander.use_jinja(class_name + ".cpp.tmpl")
92 def generate_implementation(self): 93 def generate_implementation(self):
93 return { 94 return {
94 'features': self._features, 95 'features': self._features,
95 'feature_sets': self._feature_sets(), 96 'feature_sets': self._feature_sets(),
96 } 97 }
97 98
98 99
99 if __name__ == "__main__": 100 if __name__ == "__main__":
100 in_generator.Maker(RuntimeFeatureWriter).main(sys.argv) 101 in_generator.Maker(RuntimeFeatureWriter).main(sys.argv)
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698