blob: ca1c7212641d2316ce1a47796cf75561e47d2984 [file] [log] [blame]
ager@chromium.org5ec48922009-05-05 07:25:34 +00001#!/bin/sh
2
ager@chromium.orge2902be2009-06-08 12:21:35 +00003tools_path=`cd $(dirname "$0");pwd`
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004if [ ! "$D8_PATH" ]; then
5 d8_public=`which d8`
6 if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
7fi
ager@chromium.orge2902be2009-06-08 12:21:35 +00008[ "$D8_PATH" ] || D8_PATH=$tools_path/..
9d8_exec=$D8_PATH/d8
ager@chromium.org5ec48922009-05-05 07:25:34 +000010
ager@chromium.org5aa501c2009-06-23 07:57:28 +000011if [ "$1" == "--no-build" ]; then
12 shift
13else
ager@chromium.orge2902be2009-06-08 12:21:35 +000014# compile d8 if it doesn't exist, assuming this script
15# resides in the repository.
ager@chromium.org5aa501c2009-06-23 07:57:28 +000016 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8
17fi
ager@chromium.org5ec48922009-05-05 07:25:34 +000018
kasperl@chromium.org71affb52009-05-26 05:44:31 +000019# nm spits out 'no symbols found' messages to stderr.
ager@chromium.orge2902be2009-06-08 12:21:35 +000020$d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
21 $tools_path/csvparser.js $tools_path/consarray.js \
22 $tools_path/profile.js $tools_path/profile_view.js \
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000023 $tools_path/logreader.js $tools_path/tickprocessor.js \
24 $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null