blob: 50c36d4667ce360c36962846b8f18962379fbe01 [file] [log] [blame]
Adam Metcalfca26d472013-07-19 11:42:47 -07001apply plugin: 'java'
2
C. Sean Young4a42aef2015-06-10 10:43:26 -05003import com.android.internal.BuildUtils
4
Adam Metcalfca26d472013-07-19 11:42:47 -07005sourceSets {
6 main {
7 java {
8 srcDirs = ['src/']
9 }
10 resources {
11 srcDirs = ['res/']
12 }
13 }
14}
Adam Metcalfca26d472013-07-19 11:42:47 -070015
16dependencies {
C. Sean Young4a42aef2015-06-10 10:43:26 -050017 compile files(BuildUtils.findToolsJar(project))
Justin Moreyebe83f62014-03-17 00:45:13 -050018 compile project(path: ':antlr', configuration: 'antlrRuntime')
19 compile project(':jsilver')
Dirk Doughertyc770a6e2014-02-07 20:04:27 -080020 compile project(':tagsoup')
Adam Metcalfca26d472013-07-19 11:42:47 -070021}