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

Side by Side Diff: Source/devtools/scripts/generate_supported_css.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 unified diff | Download patch
« no previous file with comments | « Source/devtools/devtools.gyp ('k') | Tools/Scripts/webkitpy/w3c/test_converter.py » ('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) 2014 Google Inc. All rights reserved. 2 # Copyright (c) 2014 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 16 matching lines...) Expand all
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 try: 30 try:
31 import simplejson as json 31 import simplejson as json
32 except ImportError: 32 except ImportError:
33 import json 33 import json
34 34
35 import sys 35 import sys
36 36
37 cssProperties = {}
38 37
38 def properties_from_file(file_name):
39 properties = []
40 with open(file_name, "r") as f:
41 for line in f:
42 line = line.strip()
43 if not line or line.startswith("//") or "alias_for" in line:
44 continue
45 name = line.partition(" ")[0]
46 entry = {"name": name}
47 longhands = line.partition("longhands=")[2]
48 if longhands:
49 entry["longhands"] = longhands.split(";")
50 properties.append(entry)
51 return properties
39 52
40 def filterCommentsAndEmptyLines(lines): 53 properties = properties_from_file(sys.argv[1])
41 result = [] 54 with open(sys.argv[2], "w") as f:
42 for line in lines: 55 f.write("WebInspector.CSSMetadata.initializeWithSupportedProperties(%s);" % json.dumps(properties))
43 if len(line.strip()) > 0 and line[:2] != "//":
44 result.append(line.strip())
45 return result
46
47
48 def fillPropertiesFromFile(fileName):
49 with open(fileName, "r") as f:
50 lines = f.readlines()
51 lines = filterCommentsAndEmptyLines(lines)
52 for line in lines:
53 if not "alias_for" in line:
54 cssProperties[line] = []
55
56
57 def fillCSSShorthandsFromFile(fileName):
58 with open(fileName, "r") as f:
59 lines = f.readlines()
60 lines = filterCommentsAndEmptyLines(lines)
61 for line in lines:
62 # Every line is:
63 # <property-name>[ longhands=<longhand 1>;<longhand 2>;<longhand 3>,run timeEnabledShorthand=<runtime flag name>]
64 # There might be a runtime flag declaration at the end of the list follo wed by a comma.
65 if "," in line:
66 line = line[:line.index(",")]
67 shorthand = line[:line.index(" ")]
68 longhands = line[line.index("=") + 1:].split(";")
69 cssProperties[shorthand] = longhands
70
71 fillPropertiesFromFile(sys.argv[1])
72 fillPropertiesFromFile(sys.argv[2])
73 fillCSSShorthandsFromFile(sys.argv[3])
74
75 # Reformat from map into list.
76 reformat = []
77 for name, longhands in cssProperties.items():
78 entry = {"name": name}
79 if len(longhands) > 0:
80 entry["longhands"] = longhands
81 reformat.append(entry)
82
83 with open(sys.argv[4], "w") as f:
84 f.write("WebInspector.CSSMetadata.initializeWithSupportedProperties(%s);" % json.dumps(reformat))
OLDNEW
« no previous file with comments | « Source/devtools/devtools.gyp ('k') | Tools/Scripts/webkitpy/w3c/test_converter.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698