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

Unified Diff: src/lexer/lexer.gyp

Issue 85923002: Experimental scanner: add the Experimental stuff into the base library build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lexer/lexer.gyp
diff --git a/src/lexer/lexer.gyp b/src/lexer/lexer.gyp
index 97668985459990ba9a9847408b42e98ddef3e3e6..a531ee7a7fae06986c0823c18620b12a1ac99607 100644
--- a/src/lexer/lexer.gyp
+++ b/src/lexer/lexer.gyp
@@ -37,6 +37,7 @@
'type': 'executable',
'dependencies': [
'../../tools/gyp/v8.gyp:v8',
+ '../../tools/gyp/v8.gyp:generated-lexer',
],
# Generated source files need this explicitly:
'include_dirs+': [
@@ -58,62 +59,6 @@
],
}],
],
- 'actions': [
- {
- 'action_name': 'codegen_8',
- 'inputs': [
- '../../src/lexer/lexer_py.re',
- '../../tools/lexer_generator/*.py',
- '../../tools/lexer_generator/*.jinja',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/generated_lexer_latin1.cc',
- ],
- 'action': [
- 'python',
- '../../tools/lexer_generator/generator.py',
- '--re=../../src/lexer/lexer_py.re',
- '--code=<(SHARED_INTERMEDIATE_DIR)/generated_lexer_latin1.cc',
- '--encoding=latin1',
- ],
- },
- {
- 'action_name': 'codegen_16',
- 'inputs': [
- '../../src/lexer/lexer_py.re',
- '../../tools/lexer_generator/*.py',
- '../../tools/lexer_generator/*.jinja',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/generated_lexer_utf16.cc',
- ],
- 'action': [
- 'python',
- '../../tools/lexer_generator/generator.py',
- '--re=../../src/lexer/lexer_py.re',
- '--code=<(SHARED_INTERMEDIATE_DIR)/generated_lexer_utf16.cc',
- '--encoding=utf16',
- ],
- },
- {
- 'action_name': 'codegen_utf8',
- 'inputs': [
- '../../src/lexer/lexer_py.re',
- '../../tools/lexer_generator/*.py',
- '../../tools/lexer_generator/*.jinja',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/generated_lexer_utf8.cc',
- ],
- 'action': [
- 'python',
- '../../tools/lexer_generator/generator.py',
- '--re=../../src/lexer/lexer_py.re',
- '--code=<(SHARED_INTERMEDIATE_DIR)/generated_lexer_utf8.cc',
- '--encoding=utf8',
- ],
- },
- ],
},
],
}
« no previous file with comments | « no previous file | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698