Changeset 244095 in webkit
- Timestamp:
- Apr 9, 2019, 2:42:32 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkit/messages.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r244092 r244095 1 2019-04-09 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed, fix webkitpy failure after r244085. 4 5 Use a list instead of a set for header includes so that the order is 6 maintained. 7 8 * Scripts/webkit/messages.py: 9 1 10 2019-04-09 Andy Estes <aestes@apple.com> 2 11 -
trunk/Source/WebKit/Scripts/webkit/messages.py
r244085 r244095 245 245 forward_declarations = '\n'.join([forward_declarations_for_namespace(namespace, types) for (namespace, types) in sorted(types_by_namespace.items())]) 246 246 247 header_includes = set()247 header_includes = [] 248 248 for header in sorted(headers): 249 249 if header in header_conditions and not None in header_conditions[header]: … … 251 251 header_include += '#include %s\n' % header 252 252 header_include += '#endif\n' 253 header_includes.a dd(header_include)253 header_includes.append(header_include) 254 254 else: 255 header_includes.a dd('#include %s\n' % header)255 header_includes.append('#include %s\n' % header) 256 256 257 257 return (forward_declarations, header_includes)
Note:
See TracChangeset
for help on using the changeset viewer.