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

Side by Side Diff: Source/bindings/scripts/scripts.gyp

Issue 463063003: Add lextab.pyc as an output of the cached_lex_yacc_tables action (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « Source/bindings/scripts/BUILD.gn ('k') | 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 # Pre-caching steps used internally by the IDL compiler 5 # Pre-caching steps used internally by the IDL compiler
6 # 6 #
7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 14 matching lines...) Expand all
25 # GN version: //third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_t ables 25 # GN version: //third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_t ables
26 'target_name': 'cached_lex_yacc_tables', 26 'target_name': 'cached_lex_yacc_tables',
27 'type': 'none', 27 'type': 'none',
28 'actions': [{ 28 'actions': [{
29 'action_name': 'cache_lex_yacc_tables', 29 'action_name': 'cache_lex_yacc_tables',
30 'inputs': [ 30 'inputs': [
31 '<@(idl_lexer_parser_files)', 31 '<@(idl_lexer_parser_files)',
32 ], 32 ],
33 'outputs': [ 33 'outputs': [
34 '<(bindings_scripts_output_dir)/lextab.py', 34 '<(bindings_scripts_output_dir)/lextab.py',
35 '<(bindings_scripts_output_dir)/lextab.pyc',
35 '<(bindings_scripts_output_dir)/parsetab.pickle', 36 '<(bindings_scripts_output_dir)/parsetab.pickle',
36 ], 37 ],
37 'action': [ 38 'action': [
38 'python', 39 'python',
39 'blink_idl_parser.py', 40 'blink_idl_parser.py',
40 '<(bindings_scripts_output_dir)', 41 '<(bindings_scripts_output_dir)',
41 ], 42 ],
42 'message': 'Caching PLY lex & yacc lex/parse tables', 43 'message': 'Caching PLY lex & yacc lex/parse tables',
43 }], 44 }],
44 }, 45 },
(...skipping 21 matching lines...) Expand all
66 'code_generator_v8.py', 67 'code_generator_v8.py',
67 '<(bindings_scripts_output_dir)', 68 '<(bindings_scripts_output_dir)',
68 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp', 69 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp',
69 ], 70 ],
70 'message': 'Caching bytecode of Jinja templates', 71 'message': 'Caching bytecode of Jinja templates',
71 }], 72 }],
72 }, 73 },
73 ################################################################################ 74 ################################################################################
74 ], # targets 75 ], # targets
75 } 76 }
OLDNEW
« no previous file with comments | « Source/bindings/scripts/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698