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

Side by Side Diff: build/android_jar_location.sh

Issue 10832034: Upstreaming AndroidProtocolAdapter. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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
OLDNEW
(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
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
OLDNEW
« no previous file with comments | « no previous file | build/system_classes_jni_generator.gypi » ('j') | build/system_classes_jni_generator.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698