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

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

Issue 468743003: Revert of 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',
36 '<(bindings_scripts_output_dir)/parsetab.pickle', 35 '<(bindings_scripts_output_dir)/parsetab.pickle',
37 ], 36 ],
38 'action': [ 37 'action': [
39 'python', 38 'python',
40 'blink_idl_parser.py', 39 'blink_idl_parser.py',
41 '<(bindings_scripts_output_dir)', 40 '<(bindings_scripts_output_dir)',
42 ], 41 ],
43 'message': 'Caching PLY lex & yacc lex/parse tables', 42 'message': 'Caching PLY lex & yacc lex/parse tables',
44 }], 43 }],
45 }, 44 },
(...skipping 21 matching lines...) Expand all
67 'code_generator_v8.py', 66 'code_generator_v8.py',
68 '<(bindings_scripts_output_dir)', 67 '<(bindings_scripts_output_dir)',
69 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp', 68 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp',
70 ], 69 ],
71 'message': 'Caching bytecode of Jinja templates', 70 'message': 'Caching bytecode of Jinja templates',
72 }], 71 }],
73 }, 72 },
74 ################################################################################ 73 ################################################################################
75 ], # targets 74 ], # targets
76 } 75 }
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