| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/bindings/templates/templates.gni") | 7 import("//third_party/WebKit/Source/bindings/templates/templates.gni") |
| 8 | 8 |
| 9 visibility = "//third_party/WebKit/*" | 9 visibility = "//third_party/WebKit/*" |
| 10 | 10 |
| 11 # This separate pre-caching step is required to use lex/parse table | 11 # This separate pre-caching step is required to use lex/parse table |
| 12 # caching in PLY, since PLY itself does not check if the cache is | 12 # caching in PLY, since PLY itself does not check if the cache is |
| 13 # valid, and thus may end up using a stale cache if this step hasn't | 13 # valid, and thus may end up using a stale cache if this step hasn't |
| 14 # been run to update it. | 14 # been run to update it. |
| 15 # | 15 # |
| 16 # This action's dependencies *is* the cache validation. | 16 # This action's dependencies *is* the cache validation. |
| 17 # | 17 # |
| 18 # GYP version: scripts.gyp:cached_lex_yacc_tables | 18 # GYP version: scripts.gyp:cached_lex_yacc_tables |
| 19 action("cached_lex_yacc_tables") { | 19 action("cached_lex_yacc_tables") { |
| 20 script = "blink_idl_parser.py" | 20 script = "blink_idl_parser.py" |
| 21 | 21 |
| 22 inputs = idl_lexer_parser_files | 22 inputs = idl_lexer_parser_files |
| 23 outputs = [ | 23 outputs = [ |
| 24 "$bindings_scripts_output_dir/lextab.py", | 24 "$bindings_scripts_output_dir/lextab.py", |
| 25 "$bindings_scripts_output_dir/lextab.pyc", | |
| 26 "$bindings_scripts_output_dir/parsetab.pickle", | 25 "$bindings_scripts_output_dir/parsetab.pickle", |
| 27 ] | 26 ] |
| 28 | 27 |
| 29 args = [ rebase_path(bindings_scripts_output_dir, root_build_dir) ] | 28 args = [ rebase_path(bindings_scripts_output_dir, root_build_dir) ] |
| 30 } | 29 } |
| 31 | 30 |
| 32 # A separate pre-caching step is *required* to use bytecode caching in | 31 # A separate pre-caching step is *required* to use bytecode caching in |
| 33 # Jinja (which improves speed significantly), as the bytecode cache is | 32 # Jinja (which improves speed significantly), as the bytecode cache is |
| 34 # not concurrency-safe on write; details in code_generator_v8.py. | 33 # not concurrency-safe on write; details in code_generator_v8.py. |
| 35 # | 34 # |
| 36 # GYP version: scripts.gyp:cached_jinja_templates | 35 # GYP version: scripts.gyp:cached_jinja_templates |
| 37 action("cached_jinja_templates") { | 36 action("cached_jinja_templates") { |
| 38 script = "code_generator_v8.py" | 37 script = "code_generator_v8.py" |
| 39 | 38 |
| 40 inputs = jinja_module_files + [ "code_generator_v8.py" ] + | 39 inputs = jinja_module_files + [ "code_generator_v8.py" ] + |
| 41 code_generator_template_files | 40 code_generator_template_files |
| 42 # Dummy file to track dependency. | 41 # Dummy file to track dependency. |
| 43 stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp" | 42 stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp" |
| 44 outputs = [ stamp_file ] | 43 outputs = [ stamp_file ] |
| 45 | 44 |
| 46 args = [ | 45 args = [ |
| 47 rebase_path(bindings_scripts_output_dir, root_build_dir), | 46 rebase_path(bindings_scripts_output_dir, root_build_dir), |
| 48 rebase_path(stamp_file, root_build_dir), | 47 rebase_path(stamp_file, root_build_dir), |
| 49 ] | 48 ] |
| 50 } | 49 } |
| OLD | NEW |