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

Side by Side Diff: appengine/chromium_build_stats/gen-trace-viewer.sh

Issue 1916363002: chromium_build_stats: fix trace viewer (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: split catapult roll Created 4 years, 8 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/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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698