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

Side by Side Diff: sdk/bin/dartdoc

Issue 161433002: Remove a few more vestiges of dartdoc. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/bin/dartdoc.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file.
5
6 function follow_links() {
7 file="$1"
8 while [ -h "$file" ]; do
9 # On Mac OS, readlink -f doesn't work.
10 file="$(readlink "$file")"
11 done
12 echo "$file"
13 }
14
15 # Unlike $0, $BASH_SOURCE points to the absolute path of this file.
16 PROG_NAME="$(follow_links "$BASH_SOURCE")"
17
18 # Handle the case where dart-sdk/bin has been symlinked to.
19 BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
20
21 unset COLORS
22 if test -t 1; then
23 # Stdout is a terminal.
24 if test 8 -le `tput colors`; then
25 # Stdout has at least 8 colors, so enable colors.
26 COLORS="--enable-diagnostic-colors"
27 fi
28 fi
29
30 unset SNAPSHOT
31
32 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot"
33
34 if test -f $SNAPSHOT; then
35 # TODO(ahe): Remove the following line when we are relatively sure it works.
36 echo Using snapshot $SNAPSHOT 1>&2
37 exec "$BIN_DIR"/dart --heap_growth_rate=32 \
38 "--package-root=$BIN_DIR/../packages/" $SNAPSHOT dartdoc $COLORS \
39 "--package-root=$BIN_DIR/../packages/" "--library-root=$BIN_DIR/.." "$@"
40 else
41 exec "$BIN_DIR"/dart --heap_growth_rate=32 \
42 "--package-root=$BIN_DIR/../packages/" \
43 "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart" $COLORS "$@"
44 fi
OLDNEW
« no previous file with comments | « no previous file | sdk/bin/dartdoc.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698