Index: scripts/slave/recipes/closure_compilation.py |
diff --git a/scripts/slave/recipes/closure_compilation.py b/scripts/slave/recipes/closure_compilation.py |
index f353e4f1c2bcc54ad84d05607f030dd60c5beeb8..c3451d0c4d6cbe7bdfb4e5b066f4752defb8dfa5 100644 |
--- a/scripts/slave/recipes/closure_compilation.py |
+++ b/scripts/slave/recipes/closure_compilation.py |
@@ -40,10 +40,22 @@ |
) |
api.step( |
- 'run_compiler', |
- [api.path['checkout'].join('third_party', 'closure_compiler', |
- 'run_compiler')] |
+ 'generate_gyp_files', |
+ [api.path['checkout'].join('build', 'gyp_chromium'), |
+ api.path['checkout'].join('third_party', 'closure_compiler', |
+ 'compiled_resources.gyp')], |
) |
+ |
+ api.chromium.compile() |
+ |
+ api.step( |
+ 'generate_v2_gyp_files', |
+ [api.path['checkout'].join('build', 'gyp_chromium'), |
+ api.path['checkout'].join('third_party', 'closure_compiler', |
+ 'compiled_resources2.gyp')], |
+ ) |
+ |
+ api.chromium.compile(name='compile_v2') |
def GenTests(api): |