| 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 26 matching lines...) Expand all Loading... |
| 37 ], | 37 ], |
| 38 | 38 |
| 39 'variables': { | 39 'variables': { |
| 40 'main_idl_files': [ | 40 'main_idl_files': [ |
| 41 '<@(core_idl_files)', | 41 '<@(core_idl_files)', |
| 42 '<@(modules_idl_files)', | 42 '<@(modules_idl_files)', |
| 43 '<@(svg_idl_files)', | 43 '<@(svg_idl_files)', |
| 44 ], | 44 ], |
| 45 'support_idl_files': [ | 45 'support_idl_files': [ |
| 46 '<@(webcore_testing_support_idl_files)', | 46 '<@(webcore_testing_support_idl_files)', |
| 47 '<@(modules_testing_support_idl_files)', | |
| 48 ], | 47 ], |
| 49 'testing_support_idl_files': [ | 48 'testing_support_idl_files': [ |
| 50 '<@(webcore_testing_support_idl_files)', | 49 '<@(webcore_testing_support_idl_files)', |
| 51 '<@(modules_testing_support_idl_files)', | |
| 52 '<@(generated_webcore_testing_support_idl_files)', | 50 '<@(generated_webcore_testing_support_idl_files)', |
| 53 ], | 51 ], |
| 54 'compiler_module_files': [ | 52 'compiler_module_files': [ |
| 55 'scripts/idl_compiler.py', | 53 'scripts/idl_compiler.py', |
| 56 '<(DEPTH)/third_party/ply/lex.py', | 54 '<(DEPTH)/third_party/ply/lex.py', |
| 57 '<(DEPTH)/third_party/ply/yacc.py', | 55 '<(DEPTH)/third_party/ply/yacc.py', |
| 58 # jinja2/__init__.py contains version string, so sufficient for package | 56 # jinja2/__init__.py contains version string, so sufficient for package |
| 59 '<(DEPTH)/third_party/jinja2/__init__.py', | 57 '<(DEPTH)/third_party/jinja2/__init__.py', |
| 60 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep | 58 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep |
| 61 '<(DEPTH)/tools/idl_parser/idl_lexer.py', | 59 '<(DEPTH)/tools/idl_parser/idl_lexer.py', |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 '../build/scripts/action_derivedsourcesallinone.py', | 293 '../build/scripts/action_derivedsourcesallinone.py', |
| 296 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', | 294 '<(SHARED_INTERMEDIATE_DIR)/blink/BindingsDerivedSources.txt', |
| 297 '--', | 295 '--', |
| 298 '<@(derived_sources_aggregate_files)', | 296 '<@(derived_sources_aggregate_files)', |
| 299 ], | 297 ], |
| 300 'message': 'Generating bindings derived sources', | 298 'message': 'Generating bindings derived sources', |
| 301 }], | 299 }], |
| 302 }, | 300 }, |
| 303 ], | 301 ], |
| 304 } | 302 } |
| OLD | NEW |