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

Side by Side Diff: tools/gyp/v8.gyp

Issue 138973007: Experimental parser: support subgraph inlining (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « src/lexer/lexer_py.re ('k') | tools/lexer_generator/nfa_builder.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 '../../src/lexer/lexer_py.re', 241 '../../src/lexer/lexer_py.re',
242 '../../tools/lexer_generator/code_generator.jinja', 242 '../../tools/lexer_generator/code_generator.jinja',
243 '../../tools/lexer_generator/automaton.py', 243 '../../tools/lexer_generator/automaton.py',
244 '../../tools/lexer_generator/code_generator.py', 244 '../../tools/lexer_generator/code_generator.py',
245 '../../tools/lexer_generator/dfa_optimizer.py', 245 '../../tools/lexer_generator/dfa_optimizer.py',
246 '../../tools/lexer_generator/dfa.py', 246 '../../tools/lexer_generator/dfa.py',
247 '../../tools/lexer_generator/generator.py', 247 '../../tools/lexer_generator/generator.py',
248 '../../tools/lexer_generator/__init__.py', 248 '../../tools/lexer_generator/__init__.py',
249 '../../tools/lexer_generator/nfa_builder.py', 249 '../../tools/lexer_generator/nfa_builder.py',
250 '../../tools/lexer_generator/nfa.py', 250 '../../tools/lexer_generator/nfa.py',
251 '../../tools/lexer_generator/regex_lexer.py',
252 '../../tools/lexer_generator/regex_parser.py', 251 '../../tools/lexer_generator/regex_parser.py',
253 '../../tools/lexer_generator/rule_lexer.py',
254 '../../tools/lexer_generator/rule_parser.py', 252 '../../tools/lexer_generator/rule_parser.py',
255 '../../tools/lexer_generator/transition_keys.py', 253 '../../tools/lexer_generator/transition_keys.py',
256 ], 254 ],
257 }, 255 },
258 'actions': [ 256 'actions': [
259 { 257 {
260 'action_name': 'codegen_8', 258 'action_name': 'codegen_8',
261 'inputs': [ 259 'inputs': [
262 '<@(lexer_generator_files)', 260 '<@(lexer_generator_files)',
263 ], 261 ],
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 }], 1231 }],
1234 ['v8_compress_startup_data=="bz2"', { 1232 ['v8_compress_startup_data=="bz2"', {
1235 'libraries': [ 1233 'libraries': [
1236 '-lbz2', 1234 '-lbz2',
1237 ] 1235 ]
1238 }], 1236 }],
1239 ], 1237 ],
1240 }, 1238 },
1241 ], 1239 ],
1242 } 1240 }
OLDNEW
« no previous file with comments | « src/lexer/lexer_py.re ('k') | tools/lexer_generator/nfa_builder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698