summaryrefslogtreecommitdiff
path: root/build.gradle
blob: e818549f5fb6c34a2afb93e449466c2b9bf914d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * This build.gradle file is to be used with the AOSP tools gradle-based build.
 * It is not meant as a standalone build setup.
 */
apply plugin: 'java'
apply plugin: 'sdk-java-lib'

archivesBaseName = 'emma_device'

sourceSets {
  main {
    java {
      srcDirs = ['core/data', 'core/java12', 'core/java13', 'core/java14']
    }
    resources {
      srcDirs = ['core/res', 'pregenerated/res']
    }
  }
}

sdk {
  common {
    item('lib/emma.jar') {
      into 'lib'
    }
    item('lib/emma_ant.jar') {
      into 'lib'
    }
  }
}