Chromium Code Reviews| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 42 valid_values = { | 42 valid_values = { |
| 43 'status': ['stable', 'experimental', 'test'], | 43 'status': ['stable', 'experimental', 'test'], |
| 44 } | 44 } |
| 45 defaults = { | 45 defaults = { |
| 46 'condition': None, | 46 'condition': None, |
| 47 'custom': False, | 47 'custom': False, |
| 48 'depends_on': [], | 48 'depends_on': [], |
| 49 'feature_policy': None, | 49 'feature_policy': None, |
| 50 'implied_by': [], | 50 'implied_by': [], |
| 51 'origin_trial_feature_name': None, | 51 'origin_trial_feature_name': None, |
| 52 'origin_trial_os_whitelist': [], | |
|
dglazkov
2016/09/29 15:59:47
just origin_trial_os? Also, will you need to modif
Sam McNally
2016/10/04 01:54:03
Done.
| |
| 52 'settable_from_internals': False, | 53 'settable_from_internals': 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, |
| 59 (self.class_name + '.cpp'): self.generate_implementatio n, | 60 (self.class_name + '.cpp'): self.generate_implementatio n, |
| 60 } | 61 } |
| 61 | 62 |
| (...skipping 28 matching lines...) Expand all 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') | 94 @template_expander.use_jinja(class_name + '.cpp.tmpl') |
| 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 |