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

Side by Side Diff: tools/perf/page_sets/tough_scheduling_cases/generate_second_batch_js.sh

Issue 1000203002: Add second batch JS benchmark and code generator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Beautification. Created 5 years, 9 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/sh
2 ./second_batch_js_generator.py \
3 --closure-count=10 \
4 --function-count=10 \
5 --inner-function-count=10 \
6 --function-call-count=1 \
7 --closure-call-count=1 \
8 --loop-count=5 \
9 | yui-compressor --type js > second_batch_js_light.min.js
10 ./second_batch_js_generator.py \
11 --closure-count=50 \
12 --function-count=50 \
13 --inner-function-count=20 \
14 --function-call-count=5 \
15 --closure-call-count=5 \
16 --loop-count=5 \
17 | yui-compressor --type js > second_batch_js_medium.min.js
18 ./second_batch_js_generator.py \
19 --closure-count=200 \
20 --function-count=200 \
21 --inner-function-count=40 \
22 --function-call-count=10 \
23 --closure-call-count=10 \
24 --loop-count=5 \
25 | yui-compressor --type js > second_batch_js_heavy.min.js
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698