aboutsummaryrefslogtreecommitdiff
path: root/grit/format/policy_templates/writers/json_writer.py
diff options
context:
space:
mode:
authorAndroid Chromium Automerger <chromium-automerger@android>2014-11-05 16:03:39 +0000
committerAndroid Chromium Automerger <chromium-automerger@android>2014-11-05 16:03:39 +0000
commite8e6ed4b1174a9efffaa4cad5f6bf7a440004bbe (patch)
tree9a7b625bfe5d41bda8cb037eb7380ed8a72f8fba /grit/format/policy_templates/writers/json_writer.py
parentb841a46fdb44270588ac17bdbdbf3c0e17b2419e (diff)
parenta24a0e647bb718b3540db89864cf586b12331e82 (diff)
downloadgrit-e8e6ed4b1174a9efffaa4cad5f6bf7a440004bbe.tar.gz
Merge tools/grit from https://chromium.googlesource.com/external/grit-i18n.git at a24a0e647bb718b3540db89864cf586b12331e82
This commit was generated by merge_from_chromium.py. Change-Id: I5ff279834b9b4a16e05ba9054b29eaf7ab00c9c9
Diffstat (limited to 'grit/format/policy_templates/writers/json_writer.py')
-rw-r--r--grit/format/policy_templates/writers/json_writer.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/grit/format/policy_templates/writers/json_writer.py b/grit/format/policy_templates/writers/json_writer.py
index f5af8c1..4dfd282 100644
--- a/grit/format/policy_templates/writers/json_writer.py
+++ b/grit/format/policy_templates/writers/json_writer.py
@@ -39,6 +39,9 @@ class JsonWriter(template_writer.TemplateWriter):
def PreprocessPolicies(self, policy_list):
return self.FlattenGroupsAndSortPolicies(policy_list)
+ def WriteComment(self, comment):
+ self._out.append('// ' + comment)
+
def WritePolicy(self, policy):
if policy['type'] == 'external':
# This type can only be set through cloud policy.
@@ -69,6 +72,9 @@ class JsonWriter(template_writer.TemplateWriter):
self._first_written = False
def BeginTemplate(self):
+ if self._GetChromiumVersionString() is not None:
+ self.WriteComment(self.config['build'] + ''' version: ''' + \
+ self._GetChromiumVersionString())
self._out.append(TEMPLATE_HEADER)
def EndTemplate(self):