diff options
author | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-12 02:22:21 +0000 |
---|---|---|
committer | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-12 02:22:21 +0000 |
commit | 15a28fd05ef7f31a705078b35539cc62a4cf603b (patch) | |
tree | 3e2f777c5a7c1492f73b808b5545894f4bf51e1a /tools/json_schema_compiler/cc_generator.py | |
parent | 797510b8b3b3e68457476680ea1fdb40eb23ab45 (diff) | |
download | chromium_src-15a28fd05ef7f31a705078b35539cc62a4cf603b.zip chromium_src-15a28fd05ef7f31a705078b35539cc62a4cf603b.tar.gz chromium_src-15a28fd05ef7f31a705078b35539cc62a4cf603b.tar.bz2 |
Files generated by the JSON schema compiler are named incorrectly
Files are now named like "file_name.h" instead of "fileName.h" or
"file.name.h", and all the JSON files have been renamed.
BUG=125669
TEST=All previous tests for the renamed files
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=135077
Review URL: https://chromiumcodereview.appspot.com/10272021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136747 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/json_schema_compiler/cc_generator.py')
-rw-r--r-- | tools/json_schema_compiler/cc_generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/cc_generator.py b/tools/json_schema_compiler/cc_generator.py index 508e0f2..4ba5b37 100644 --- a/tools/json_schema_compiler/cc_generator.py +++ b/tools/json_schema_compiler/cc_generator.py @@ -33,7 +33,7 @@ class CCGenerator(object): .Append() .Append(self._util_cc_helper.GetIncludePath()) .Append('#include "%s/%s.h"' % - (self._namespace.source_file_dir, self._namespace.name)) + (self._namespace.source_file_dir, self._namespace.unix_name)) ) includes = self._cpp_type_generator.GenerateIncludes() if not includes.IsEmpty(): |