summaryrefslogtreecommitdiffstats
path: root/chromium/v8/tools/lexer-shell.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/tools/lexer-shell.gyp')
-rw-r--r--chromium/v8/tools/lexer-shell.gyp25
1 files changed, 24 insertions, 1 deletions
diff --git a/chromium/v8/tools/lexer-shell.gyp b/chromium/v8/tools/lexer-shell.gyp
index 8e6ab7a844b..6fd129ac690 100644
--- a/chromium/v8/tools/lexer-shell.gyp
+++ b/chromium/v8/tools/lexer-shell.gyp
@@ -47,10 +47,33 @@
}],
],
'include_dirs+': [
- '../src',
+ '..',
],
'sources': [
'lexer-shell.cc',
+ 'shell-utils.h',
+ ],
+ },
+ {
+ 'target_name': 'parser-shell',
+ 'type': 'executable',
+ 'dependencies': [
+ '../tools/gyp/v8.gyp:v8',
+ ],
+ 'conditions': [
+ ['v8_enable_i18n_support==1', {
+ 'dependencies': [
+ '<(icu_gyp_path):icui18n',
+ '<(icu_gyp_path):icuuc',
+ ],
+ }],
+ ],
+ 'include_dirs+': [
+ '..',
+ ],
+ 'sources': [
+ 'parser-shell.cc',
+ 'shell-utils.h',
],
},
],