| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 class_name = 'RuntimeEnabledFeatures' | 39 class_name = 'RuntimeEnabledFeatures' |
| 40 filters = { | 40 filters = { |
| 41 'enable_conditional': name_utilities.enable_conditional_if_endif, | 41 'enable_conditional': name_utilities.enable_conditional_if_endif, |
| 42 } | 42 } |
| 43 | 43 |
| 44 # FIXME: valid_values and defaults should probably roll into one object. | 44 # FIXME: valid_values and defaults should probably roll into one object. |
| 45 valid_values = { | 45 valid_values = { |
| 46 'status': ['stable', 'experimental', 'test'], | 46 'status': ['stable', 'experimental', 'test'], |
| 47 } | 47 } |
| 48 defaults = { | 48 defaults = { |
| 49 'api_name': None, |
| 49 'condition': None, | 50 'condition': None, |
| 50 'implied_by': [], | 51 'implied_by': [], |
| 51 'depends_on': [], | 52 'depends_on': [], |
| 52 'custom': False, | 53 'custom': False, |
| 53 'status': None, | 54 'status': None, |
| 54 } | 55 } |
| 55 | 56 |
| 56 def __init__(self, in_file_path): | 57 def __init__(self, in_file_path): |
| 57 super(RuntimeFeatureWriter, self).__init__(in_file_path) | 58 super(RuntimeFeatureWriter, self).__init__(in_file_path) |
| 58 self._outputs = {(self.class_name + '.h'): self.generate_header, | 59 self._outputs = {(self.class_name + '.h'): self.generate_header, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 def generate_header(self): | 91 def generate_header(self): |
| 91 return self._template_inputs() | 92 return self._template_inputs() |
| 92 | 93 |
| 93 @template_expander.use_jinja(class_name + '.cpp.tmpl', filters=filters) | 94 @template_expander.use_jinja(class_name + '.cpp.tmpl', filters=filters) |
| 94 def generate_implementation(self): | 95 def generate_implementation(self): |
| 95 return self._template_inputs() | 96 return self._template_inputs() |
| 96 | 97 |
| 97 | 98 |
| 98 if __name__ == '__main__': | 99 if __name__ == '__main__': |
| 99 in_generator.Maker(RuntimeFeatureWriter).main(sys.argv) | 100 in_generator.Maker(RuntimeFeatureWriter).main(sys.argv) |
| OLD | NEW |