| OLD | NEW |
| (Empty) |
| 1 #!/bin/bash | |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 # | |
| 6 # TODO(ukai): use html/template. | |
| 7 # it hangs in Execute, even if we use different delims, | |
| 8 # such as "{{||" and "||}}". | |
| 9 dir=$(cd $(dirname $0); pwd) | |
| 10 outdir=$dir/default/tmpl | |
| 11 mkdir -p $outdir || true | |
| 12 cd $dir/../third_party/trace-viewer/ | |
| 13 ./trace2html --output=$outdir/trace-viewer.html $dir/default/tmpl/dummy.json | |
| OLD | NEW |