| OLD | NEW |
| 1 # | 1 # |
| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 '<(DEPTH)/third_party/ply/lex.py', | 125 '<(DEPTH)/third_party/ply/lex.py', |
| 126 '<(DEPTH)/third_party/ply/yacc.py', | 126 '<(DEPTH)/third_party/ply/yacc.py', |
| 127 # Web IDL lexer/parser (base parser) | 127 # Web IDL lexer/parser (base parser) |
| 128 '<(DEPTH)/tools/idl_parser/idl_lexer.py', | 128 '<(DEPTH)/tools/idl_parser/idl_lexer.py', |
| 129 '<(DEPTH)/tools/idl_parser/idl_node.py', | 129 '<(DEPTH)/tools/idl_parser/idl_node.py', |
| 130 '<(DEPTH)/tools/idl_parser/idl_parser.py', | 130 '<(DEPTH)/tools/idl_parser/idl_parser.py', |
| 131 # Blink IDL lexer/parser/constructor | 131 # Blink IDL lexer/parser/constructor |
| 132 'scripts/blink_idl_lexer.py', | 132 'scripts/blink_idl_lexer.py', |
| 133 'scripts/blink_idl_parser.py', | 133 'scripts/blink_idl_parser.py', |
| 134 'scripts/idl_definitions.py', | 134 'scripts/idl_definitions.py', |
| 135 'scripts/idl_definitions_builder.py', | |
| 136 'scripts/idl_reader.py', | 135 'scripts/idl_reader.py', |
| 137 'scripts/idl_validator.py', | 136 'scripts/idl_validator.py', |
| 138 'scripts/interface_dependency_resolver.py', | 137 'scripts/interface_dependency_resolver.py', |
| 139 # V8 code generator | 138 # V8 code generator |
| 140 'scripts/code_generator_v8.py', | 139 'scripts/code_generator_v8.py', |
| 141 'scripts/v8_attributes.py', | 140 'scripts/v8_attributes.py', |
| 142 'scripts/v8_callback_interface.py', | 141 'scripts/v8_callback_interface.py', |
| 143 'scripts/v8_globals.py', | 142 'scripts/v8_globals.py', |
| 144 'scripts/v8_interface.py', | 143 'scripts/v8_interface.py', |
| 145 'scripts/v8_methods.py', | 144 'scripts/v8_methods.py', |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 'type': 'none', | 394 'type': 'none', |
| 396 'dependencies': [ | 395 'dependencies': [ |
| 397 'aggregate_generated_bindings', | 396 'aggregate_generated_bindings', |
| 398 'event_interfaces', | 397 'event_interfaces', |
| 399 'individual_generated_bindings', | 398 'individual_generated_bindings', |
| 400 ], | 399 ], |
| 401 }, | 400 }, |
| 402 ################################################################################ | 401 ################################################################################ |
| 403 ], # targets | 402 ], # targets |
| 404 } | 403 } |
| OLD | NEW |