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

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

Issue 171713005: Experimental parser: add backtracking (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/backtracking_generator.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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 ] 234 ]
235 }, 235 },
236 { 236 {
237 'target_name': 'generated-lexer', 237 'target_name': 'generated-lexer',
238 'type': 'none', 238 'type': 'none',
239 'variables': { 239 'variables': {
240 'lexer_generator_files': [ 240 'lexer_generator_files': [
241 '../../src/lexer/lexer_py.re', 241 '../../src/lexer/lexer_py.re',
242 '../../tools/lexer_generator/__init__.py', 242 '../../tools/lexer_generator/__init__.py',
243 '../../tools/lexer_generator/automaton.py', 243 '../../tools/lexer_generator/automaton.py',
244 '../../tools/lexer_generator/backtracking_generator.py',
244 '../../tools/lexer_generator/code_generator.jinja', 245 '../../tools/lexer_generator/code_generator.jinja',
245 '../../tools/lexer_generator/code_generator.py', 246 '../../tools/lexer_generator/code_generator.py',
246 '../../tools/lexer_generator/dfa.py', 247 '../../tools/lexer_generator/dfa.py',
247 '../../tools/lexer_generator/dfa_minimizer.py', 248 '../../tools/lexer_generator/dfa_minimizer.py',
248 '../../tools/lexer_generator/dfa_optimizer.py', 249 '../../tools/lexer_generator/dfa_optimizer.py',
249 '../../tools/lexer_generator/dot_utilities.py', 250 '../../tools/lexer_generator/dot_utilities.py',
250 '../../tools/lexer_generator/generator.py', 251 '../../tools/lexer_generator/generator.py',
251 '../../tools/lexer_generator/key_encoding.py', 252 '../../tools/lexer_generator/key_encoding.py',
252 '../../tools/lexer_generator/nfa.py', 253 '../../tools/lexer_generator/nfa.py',
253 '../../tools/lexer_generator/nfa_builder.py', 254 '../../tools/lexer_generator/nfa_builder.py',
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 }], 1236 }],
1236 ['v8_compress_startup_data=="bz2"', { 1237 ['v8_compress_startup_data=="bz2"', {
1237 'libraries': [ 1238 'libraries': [
1238 '-lbz2', 1239 '-lbz2',
1239 ] 1240 ]
1240 }], 1241 }],
1241 ], 1242 ],
1242 }, 1243 },
1243 ], 1244 ],
1244 } 1245 }
OLDNEW
« no previous file with comments | « src/lexer/lexer_py.re ('k') | tools/lexer_generator/backtracking_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698