Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 tools_dir=$(dirname "$0") | 3 tools_path=$(dirname "$0") |
| 4 d8_exec=$tools_dir/../d8 | 4 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. |
| 5 d8_exec=$D8_PATH/d8 | |
| 5 | 6 |
| 6 # compile d8 if it doesn't exist. | 7 # compile d8 if it doesn't exist. |
| 7 if [ ! -x $d8_exec ] | 8 [ -x $d8_exec ] || scons -C $D8_PATH d8 |
|
Kevin Millikin (Chromium)
2009/06/05 13:37:27
I think this second half needs to be:
scons -C $D
Mikhail Naganov
2009/06/05 15:49:41
OK, done. Please let me know if it will not work.
| |
| 8 then | |
| 9 scons -C $tools_dir/.. d8 | |
| 10 fi | |
| 11 | 9 |
| 12 # nm spits out 'no symbols found' messages to stderr. | 10 # nm spits out 'no symbols found' messages to stderr. |
| 13 $d8_exec $tools_dir/splaytree.js $tools_dir/codemap.js \ | 11 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ |
| 14 $tools_dir/csvparser.js $tools_dir/consarray.js \ | 12 $tools_path/csvparser.js $tools_path/consarray.js \ |
| 15 $tools_dir/profile.js $tools_dir/profile_view.js \ | 13 $tools_path/profile.js $tools_path/profile_view.js \ |
| 16 $tools_dir/tickprocessor.js -- $@ 2>/dev/null | 14 $tools_path/tickprocessor.js -- $@ 2>/dev/null |
| OLD | NEW |