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

Side by Side Diff: Source/build/scripts/make_css_property_names.py

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 import os.path 3 import os.path
4 import re 4 import re
5 import subprocess 5 import subprocess
6 import sys 6 import sys
7 7
8 from in_file import InFile 8 from in_file import InFile
9 import in_generator 9 import in_generator
10 import license 10 import license
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 'internal_properties': '\n'.join(map(self._case_properties, filter(l ambda property: property['is_internal'], self._properties))), 248 'internal_properties': '\n'.join(map(self._case_properties, filter(l ambda property: property['is_internal'], self._properties))),
249 } 249 }
250 # FIXME: If we could depend on Python 2.7, we would use subprocess.check _output 250 # FIXME: If we could depend on Python 2.7, we would use subprocess.check _output
251 gperf_args = ['gperf', '--key-positions=*', '-P', '-D', '-n', '-s', '2'] 251 gperf_args = ['gperf', '--key-positions=*', '-P', '-D', '-n', '-s', '2']
252 gperf = subprocess.Popen(gperf_args, stdin=subprocess.PIPE, stdout=subpr ocess.PIPE) 252 gperf = subprocess.Popen(gperf_args, stdin=subprocess.PIPE, stdout=subpr ocess.PIPE)
253 return gperf.communicate(gperf_input)[0] 253 return gperf.communicate(gperf_input)[0]
254 254
255 255
256 if __name__ == "__main__": 256 if __name__ == "__main__":
257 in_generator.Maker(CSSPropertiesWriter).main(sys.argv) 257 in_generator.Maker(CSSPropertiesWriter).main(sys.argv)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698