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

Side by Side Diff: sdk/bin/dartdocgen

Issue 696123005: Rename snapshot, other user-visible parts of docgen to dartdocgen. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make the old docgen files just call the new ones Created 6 years, 1 month 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
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 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. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 function follow_links() { 6 function follow_links() {
7 file="$1" 7 file="$1"
8 while [ -h "$file" ]; do 8 while [ -h "$file" ]; do
9 # On Mac OS, readlink -f doesn't work. 9 # On Mac OS, readlink -f doesn't work.
10 file="$(readlink "$file")" 10 file="$(readlink "$file")"
(...skipping 16 matching lines...) Expand all
27 if test -f "$SNAPSHOT"; then 27 if test -f "$SNAPSHOT"; then
28 exec "$BIN_DIR"/dart \ 28 exec "$BIN_DIR"/dart \
29 "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \ 29 "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \
30 "$SNAPSHOT" \ 30 "$SNAPSHOT" \
31 docgen "--sdk=$SDK_DIR" "$@" 31 docgen "--sdk=$SDK_DIR" "$@"
32 else 32 else
33 exec "$BIN_DIR"/dart \ 33 exec "$BIN_DIR"/dart \
34 "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \ 34 "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \
35 "$BIN_DIR/../../pkg/docgen/bin/docgen.dart" "--sdk=$SDK_DIR" "$@" 35 "$BIN_DIR/../../pkg/docgen/bin/docgen.dart" "--sdk=$SDK_DIR" "$@"
36 fi 36 fi
OLDNEW
« editor/build/build.py ('K') | « pkg/docgen/bin/docgen.dart ('k') | sdk/bin/dartdocgen.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698