From f344e524d823c810067d8fb98e245710b1d232d0 Mon Sep 17 00:00:00 2001 From: domenic Date: Fri, 15 May 2015 08:32:54 -0700 Subject: [PATCH] Fix V8 extras js2c pipeline 570fca61 introduced a regression that caused minification etc. to be applied to V8 extras. R=yangguo@chromium.org BUG= Review URL: https://codereview.chromium.org/1125103003 Cr-Commit-Position: refs/heads/master@{#28427} --- tools/js2c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/js2c.py b/tools/js2c.py index e1d617d..f5c2844 100755 --- a/tools/js2c.py +++ b/tools/js2c.py @@ -415,7 +415,7 @@ def PrepareSources(source_files, native_type, emit_js): message_template_file = message_template_files[0] filters = None - if native_type == "EXTRA": + if native_type == "EXTRAS": filters = BuildExtraFilterChain() else: filters = BuildFilterChain(macro_file, message_template_file) -- 2.7.4