Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: Source/bindings/scripts/BUILD.gn

Issue 349413004: Fix output_dir argument to blink_idl_parser.py in BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # A separate pre-caching step is *not required* to use lex/parse table 11 # A separate pre-caching step is *not required* to use lex/parse table
12 # caching in PLY, as the caches are concurrency-safe. 12 # caching in PLY, as the caches are concurrency-safe.
13 # However, pre-caching ensures that all compiler processes use the cached 13 # However, pre-caching ensures that all compiler processes use the cached
14 # files (hence maximizing speed), instead of early processes building the 14 # files (hence maximizing speed), instead of early processes building the
15 # tables themselves (as they've not yet been written when they start). 15 # tables themselves (as they've not yet been written when they start).
16 # 16 #
17 # GYP version: scripts.gyp:cached_lex_yacc_tables 17 # GYP version: scripts.gyp:cached_lex_yacc_tables
18 action("cached_lex_yacc_tables") { 18 action("cached_lex_yacc_tables") {
19 script = "blink_idl_parser.py" 19 script = "blink_idl_parser.py"
20 20
21 source_prereqs = idl_lexer_parser_files 21 source_prereqs = idl_lexer_parser_files
22 outputs = [ 22 outputs = [
23 "$bindings_scripts_output_dir/lextab.py", 23 "$bindings_scripts_output_dir/lextab.py",
24 "$bindings_scripts_output_dir/parsetab.pickle", 24 "$bindings_scripts_output_dir/parsetab.pickle",
25 ] 25 ]
26 26
27 args = [ rebase_path(bindings_output_dir, root_build_dir) ] 27 args = [ rebase_path(bindings_scripts_output_dir, root_build_dir) ]
28 } 28 }
29 29
30 # A separate pre-caching step is *required* to use bytecode caching in 30 # A separate pre-caching step is *required* to use bytecode caching in
31 # Jinja (which improves speed significantly), as the bytecode cache is 31 # Jinja (which improves speed significantly), as the bytecode cache is
32 # not concurrency-safe on write; details in code_generator_v8.py. 32 # not concurrency-safe on write; details in code_generator_v8.py.
33 # 33 #
34 # GYP version: scripts.gyp:cached_jinja_templates 34 # GYP version: scripts.gyp:cached_jinja_templates
35 action("cached_jinja_templates") { 35 action("cached_jinja_templates") {
36 script = "code_generator_v8.py" 36 script = "code_generator_v8.py"
37 37
38 source_prereqs = jinja_module_files + [ "code_generator_v8.py" ] + 38 source_prereqs = jinja_module_files + [ "code_generator_v8.py" ] +
39 code_generator_template_files 39 code_generator_template_files
40 # Dummy file to track dependency. 40 # Dummy file to track dependency.
41 stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp" 41 stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp"
42 outputs = [ stamp_file ] 42 outputs = [ stamp_file ]
43 43
44 args = [ 44 args = [
45 rebase_path(bindings_scripts_output_dir, root_build_dir), 45 rebase_path(bindings_scripts_output_dir, root_build_dir),
46 rebase_path(stamp_file, root_build_dir), 46 rebase_path(stamp_file, root_build_dir),
47 ] 47 ]
48 } 48 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698