OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh | |
Nico
2012/07/31 14:07:13
checkdeps will go red after check-in for files wit
felipeg
2012/07/31 14:54:36
Done.
| |
2 # Copyright (c) 2012 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 # Tries to find the locaiton of android.jar in the android SDK root dir. | |
Nico
2012/07/31 14:07:13
typo location
felipeg
2012/07/31 14:54:36
Done.
| |
7 # This script is called from system_classes_jni_generator.gypi | |
8 if [ -f $ANDROID_SDK_ROOT/android.jar ]; then | |
9 /bin/echo -n $ANDROID_SDK_ROOT ; | |
10 else /bin/echo -n | |
11 /bin/echo -n $ANDROID_SDK_ROOT/platforms/android-${ANDROID_SDK_VERSION} ; | |
12 fi | |
OLD | NEW |