Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / build / scripts / make_internal_settings.py
blobabaef7b86405669598340b2b7237b86371c83fa4
1 #!/usr/bin/env python
2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # Copyright (C) 2013 Igalia S.L. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
7 # met:
9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above
12 # copyright notice, this list of conditions and the following disclaimer
13 # in the documentation and/or other materials provided with the
14 # distribution.
15 # * Neither the name of Google Inc. nor the names of its
16 # contributors may be used to endorse or promote products derived from
17 # this software without specific prior written permission.
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 import sys
32 import in_generator
33 import template_expander
34 import name_utilities
35 from make_settings import to_passing_type, to_idl_type
38 class MakeInternalSettingsWriter(in_generator.Writer):
39 defaults = {
40 'type': 'bool',
41 'initial': None,
42 'invalidate': None,
44 default_parameters = {}
45 filters = {
46 'upper_first': name_utilities.upper_first,
47 'to_passing_type': to_passing_type,
48 'to_idl_type': to_idl_type,
51 def __init__(self, in_file_path):
52 super(MakeInternalSettingsWriter, self).__init__(in_file_path)
54 self.in_file.name_dictionaries.sort(key=lambda entry: entry['name'])
56 self._outputs = {
57 ('InternalSettingsGenerated.h'): self.generate_header,
58 ('InternalSettingsGenerated.cpp'): self.generate_implementation,
59 ('InternalSettingsGenerated.idl'): self.generate_idl,
61 self._template_context = {
62 'settings': self.in_file.name_dictionaries,
65 @template_expander.use_jinja('InternalSettingsGenerated.h.tmpl', filters=filters)
66 def generate_header(self):
67 return self._template_context
69 @template_expander.use_jinja('InternalSettingsGenerated.cpp.tmpl', filters=filters)
70 def generate_implementation(self):
71 return self._template_context
73 @template_expander.use_jinja('InternalSettingsGenerated.idl.tmpl', filters=filters)
74 def generate_idl(self):
75 return self._template_context
78 if __name__ == '__main__':
79 in_generator.Maker(MakeInternalSettingsWriter).main(sys.argv)