Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / tools / grit / grit / format / policy_templates / writers / plist_strings_writer.py
index 966aaf2..4257bf8 100644 (file)
@@ -22,6 +22,9 @@ class PListStringsWriter(template_writer.TemplateWriter):
   [lang].lproj subdirectories of the manifest bundle.
   '''
 
+  def WriteComment(self, comment):
+    self._out.append('/* ' + comment + ' */' )
+
   def _AddToStringTable(self, item_name, caption, desc):
     '''Add a title and a description of an item to the string table.
 
@@ -63,6 +66,9 @@ class PListStringsWriter(template_writer.TemplateWriter):
 
   def BeginTemplate(self):
     app_name = plist_helper.GetPlistFriendlyName(self.config['app_name'])
+    if self._GetChromiumVersionString() is not None:
+      self.WriteComment(self.config['build'] + ''' version: ''' + \
+          self._GetChromiumVersionString())
     self._AddToStringTable(
         app_name,
         self.config['app_name'],