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

Side by Side Diff: third_party/chrome/tools/json_schema_compiler/idl_schema.py

Issue 12300042: Update idlsync.py to pull in dependencies required for chrome api generation. (Closed) Base URL: git://github.com/dart-lang/bleeding_edge.git@master
Patch Set: From another checkout Created 7 years, 10 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
OLDNEW
1 #! /usr/bin/env python 1 #! /usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import itertools 6 import itertools
7 import json 7 import json
8 import os.path 8 import os.path
9 import re 9 import re
10 import sys 10 import sys
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 ''' 373 '''
374 Dump a json serialization of parse result for the IDL files whose names 374 Dump a json serialization of parse result for the IDL files whose names
375 were passed in on the command line. 375 were passed in on the command line.
376 ''' 376 '''
377 for filename in sys.argv[1:]: 377 for filename in sys.argv[1:]:
378 schema = Load(filename) 378 schema = Load(filename)
379 print json.dumps(schema, indent=2) 379 print json.dumps(schema, indent=2)
380 380
381 if __name__ == '__main__': 381 if __name__ == '__main__':
382 Main() 382 Main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698