OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh | |
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 location of android.jar in the android SDK root dir. | |
7 # This script is called from system_classes_jni_generator.gypi | |
8 if [ -f $ANDROID_SDK_ROOT/android.jar ]; then | |
Yaron
2012/08/01 20:27:26
You can remove this file.
felipeg
2012/08/02 13:20:38
Done.
| |
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 |