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

Side by Side Diff: sdk/bin/analyzer

Issue 12335133: Create "binaries" for calling the new analyzer. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2013, 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 # This file is used to execute the analyzer by running the jar file
ahe 2013/03/12 15:47:04 Unfinished sentence (add a period).
ricow1 2013/03/12 18:08:40 Done. and in windows as well
7 # It is a simple wrapper enabling us to have simpler command lines in
8 # the testing infrastructure.
9 set -e
10
11 function follow_links() {
12 while [ -h "$1" ]; do
13 # On Mac OS, readlink -f doesn't work.
14 1="$(readlink "$1")"
15 done
16 echo "$1"
17 }
18
19 # Unlike $0, $BASH_SOURCE points to the absolute path of this file.
20 PROG_NAME="$(follow_links "$BASH_SOURCE")"
21
22 # Handle the case where the binary dir has been symlinked to.
23 CUR_DIR="$(follow_links "$(cd "${PROG_NAME%/*}" ; pwd -P)")"
24
25 if [ -z "$DART_CONFIGURATION" ];
26 then
27 DART_CONFIGURATION="ReleaseIA32"
28 fi
29
30 if [[ `uname` == 'Darwin' ]];
31 then
32 JAR_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION/new_analyzer
33 else
34 JAR_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION/new_analyzer
35 fi
36
37 JAR_FILE="$JAR_DIR/new_analyzer.jar"
38
39 exec java -jar $JAR_FILE "$@"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698