summaryrefslogtreecommitdiff
path: root/tools/lint.bat
diff options
context:
space:
mode:
authorRaphael Moll <ralf@android.com>2013-03-06 10:51:21 -0800
committerRaphael Moll <ralf@android.com>2013-03-06 10:54:55 -0800
commit8551869d97bd32612bd8d7be0deeaf4055d91017 (patch)
treec988c95dcb123c60bd3a8efa96f26ed11d370633 /tools/lint.bat
parentf5ae1647c23c25693efce384933c52d255bcd4ec (diff)
downloaddevtools-8551869d97bd32612bd8d7be0deeaf4055d91017.tar.gz
SDK prebuilts: reorganize into tools/lib.
Change-Id: I3d985ed0abfb96930372439dee9dc2633d121948
Diffstat (limited to 'tools/lint.bat')
-rwxr-xr-xtools/lint.bat58
1 files changed, 58 insertions, 0 deletions
diff --git a/tools/lint.bat b/tools/lint.bat
new file mode 100755
index 0000000..08ae1c3
--- /dev/null
+++ b/tools/lint.bat
@@ -0,0 +1,58 @@
+@echo off
+rem Copyright (C) 2011 The Android Open Source Project
+rem
+rem Licensed under the Apache License, Version 2.0 (the "License");
+rem you may not use this file except in compliance with the License.
+rem You may obtain a copy of the License at
+rem
+rem http://www.apache.org/licenses/LICENSE-2.0
+rem
+rem Unless required by applicable law or agreed to in writing, software
+rem distributed under the License is distributed on an "AS IS" BASIS,
+rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+rem See the License for the specific language governing permissions and
+rem limitations under the License.
+
+rem don't modify the caller's environment
+setlocal
+
+rem Set up prog to be the path of this script, including following symlinks,
+rem and set up progdir to be the fully-qualified pathname of its directory.
+set prog=%~f0
+
+rem Grab current directory before we change it
+set work_dir="%cd%"
+
+rem Change current directory and drive to where the script is, to avoid
+rem issues with directories containing whitespaces.
+cd /d %~dp0
+
+rem Get the CWD as a full path with short names only (without spaces)
+for %%i in ("%cd%") do set prog_dir=%%~fsi
+
+rem Check we have a valid Java.exe in the path.
+set java_exe=
+call lib\find_java.bat
+if not defined java_exe goto :EOF
+
+set jarfile=lint.jar
+set frameworkdir=
+
+if exist %frameworkdir%%jarfile% goto JarFileOk
+ set frameworkdir=lib\
+
+if exist %frameworkdir%%jarfile% goto JarFileOk
+ set frameworkdir=..\framework\
+
+:JarFileOk
+
+if debug NEQ "%1" goto NoDebug
+ set java_debug=-agentlib:jdwp=transport=dt_socket,server=y,address=8050,suspend=y
+ shift 1
+:NoDebug
+
+set jarpath=%frameworkdir%%jarfile%
+set javaextdirs=%frameworkdir%
+
+call %java_exe% %java_debug% -Xmx512m -Dcom.android.tools.lint.bindir=%prog_dir% -Dcom.android.tools.lint.workdir=%work_dir% -classpath "%jarpath%" com.android.tools.lint.Main %*
+