Chromium Code Reviews| Index: BUILD.gn |
| diff --git a/BUILD.gn b/BUILD.gn |
| index 47896c327db9ac0f84ca26d216d87ffac57050d4..b29fa6fea7bfcffea7740d3f1299d30bdc93ee37 100644 |
| --- a/BUILD.gn |
| +++ b/BUILD.gn |
| @@ -2069,6 +2069,7 @@ group("gn_all") { |
| deps = [ |
| ":d8", |
| ":v8_hello_world", |
| + ":v8_parser_shell", |
| ":v8_sample_process", |
| ":v8_simple_json_fuzzer", |
| ":v8_simple_parser_fuzzer", |
| @@ -2206,6 +2207,29 @@ v8_executable("v8_sample_process") { |
| } |
| } |
| +v8_executable("v8_parser_shell") { |
| + sources = [ |
| + "tools/parser-shell.cc", |
| + "tools/shell-utils.h", |
| + ] |
| + |
| + configs = [ |
| + ":external_config", |
|
Michael Achenbach
2016/06/27 09:11:57
I guess the comment on the left is wrong for most
|
| + ":internal_config_base", |
| + ] |
| + |
| + deps = [ |
| + ":v8", |
| + ":v8_libplatform", |
| + "//build/config/sanitizers:deps", |
| + "//build/win:default_exe_manifest", |
| + ] |
| + |
| + if (v8_enable_i18n_support) { |
| + deps += [ "//third_party/icu" ] |
| + } |
| +} |
| + |
| if (want_v8_shell) { |
| v8_executable("v8_shell") { |
| sources = [ |