| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |