From 750b83600136c3b9bfaf33bb60ec61c41010a150 Mon Sep 17 00:00:00 2001 From: "miket@chromium.org" Date: Wed, 7 Mar 2012 02:33:35 +0000 Subject: - Extend compiler.py to recognize .idl files. - Extend .gyp to pass certain .idl files to compiler.py. - Implement a translator taking IDL parser output and creating a schema that the JSON compiler recognizes. - Convert one API to IDL using asargent's JSON cat JSON-to-IDL converter, and adapt API's implementation to use the newly generated output. TEST=no changes BUG=none Review URL: http://codereview.chromium.org/9600050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125300 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/json_schema_compiler/json_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/json_schema_compiler/json_schema.py') diff --git a/tools/json_schema_compiler/json_schema.py b/tools/json_schema_compiler/json_schema.py index aa192c0..779ec87 100644 --- a/tools/json_schema_compiler/json_schema.py +++ b/tools/json_schema_compiler/json_schema.py @@ -14,6 +14,6 @@ if third_party_path not in sys.path: sys.path.insert(0, third_party_path) import json_minify as minify -def LoadJSON(filename): +def Load(filename): with open(filename, 'r') as handle: return json.loads(minify.json_minify(handle.read())) -- cgit v1.1