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

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

Issue 169523003: Experimental parser: split and rename some files (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 | « no previous file | tools/lexer_generator/action.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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 ], 232 ],
233 }, 233 },
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',
243 '../../tools/lexer_generator/automaton.py',
242 '../../tools/lexer_generator/code_generator.jinja', 244 '../../tools/lexer_generator/code_generator.jinja',
243 '../../tools/lexer_generator/automaton.py',
244 '../../tools/lexer_generator/code_generator.py', 245 '../../tools/lexer_generator/code_generator.py',
246 '../../tools/lexer_generator/dfa.py',
247 '../../tools/lexer_generator/dfa_minimizer.py',
245 '../../tools/lexer_generator/dfa_optimizer.py', 248 '../../tools/lexer_generator/dfa_optimizer.py',
246 '../../tools/lexer_generator/dfa.py', 249 '../../tools/lexer_generator/dot_utilities.py',
247 '../../tools/lexer_generator/generator.py', 250 '../../tools/lexer_generator/generator.py',
248 '../../tools/lexer_generator/__init__.py', 251 '../../tools/lexer_generator/key_encoding.py',
252 '../../tools/lexer_generator/nfa.py',
249 '../../tools/lexer_generator/nfa_builder.py', 253 '../../tools/lexer_generator/nfa_builder.py',
250 '../../tools/lexer_generator/nfa.py',
251 '../../tools/lexer_generator/regex_parser.py', 254 '../../tools/lexer_generator/regex_parser.py',
252 '../../tools/lexer_generator/rule_parser.py', 255 '../../tools/lexer_generator/rule_parser.py',
253 '../../tools/lexer_generator/transition_keys.py', 256 '../../tools/lexer_generator/term.py',
257 '../../tools/lexer_generator/transition_key.py',
254 ], 258 ],
255 }, 259 },
256 'actions': [ 260 'actions': [
257 { 261 {
258 'action_name': 'codegen_8', 262 'action_name': 'codegen_8',
259 'inputs': [ 263 'inputs': [
260 '<@(lexer_generator_files)', 264 '<@(lexer_generator_files)',
261 ], 265 ],
262 'outputs': [ 266 'outputs': [
263 '<(SHARED_INTERMEDIATE_DIR)/generated_lexer_latin1.cc', 267 '<(SHARED_INTERMEDIATE_DIR)/generated_lexer_latin1.cc',
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
1231 }], 1235 }],
1232 ['v8_compress_startup_data=="bz2"', { 1236 ['v8_compress_startup_data=="bz2"', {
1233 'libraries': [ 1237 'libraries': [
1234 '-lbz2', 1238 '-lbz2',
1235 ] 1239 ]
1236 }], 1240 }],
1237 ], 1241 ],
1238 }, 1242 },
1239 ], 1243 ],
1240 } 1244 }
OLDNEW
« no previous file with comments | « no previous file | tools/lexer_generator/action.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698