blob: a109d337e9bd7000f97764ace1b3ad6963351150 [file] [log] [blame]
group = 'com.android.tools'
archivesBaseName = 'monkeyrunner'
dependencies {
compile project(':base:common')
compile project(':base:sdklib')
compile project(':base:ddmlib')
compile project(':swt:chimpchat')
compile project(':swt:hierarchyviewer2lib')
// Specific prebuilts and external libs used by mr.
compile 'com.google.jsilver:jsilver:1.0.0'
compile 'org.python:jython-standalone:2.5.3'
testCompile 'junit:junit:3.8.1'
}
sourceSets {
main.resources.srcDir 'src/main/java'
test.resources.srcDir 'src/test/java'
}
sdk {
linux {
item('etc/monkeyrunner') { executable true }
}
mac {
item('etc/monkeyrunner') { executable true }
}
windows {
item 'etc/monkeyrunner.bat'
}
}
// configure the manifest of the buildDistributionJar task.
sdkJar.manifest.attributes("Main-Class": "com.android.monkeyrunner.MonkeyRunnerStarter")