summaryrefslogtreecommitdiff
path: root/ddms/app/build.gradle
blob: 52dbb67df16502219e5b64de906b79f621293fb0 (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
group = 'com.android.tools.ddms'
archivesBaseName = 'ddms'

dependencies {
    compile project(':base:common')
    compile project(':base:ddmlib')
    compile project(':swt:ddmuilib')
    compile project(':swt:sdkstats')
    compile project(':swt:swtmenubar')
}

sdk {
    linux {
       item('etc/ddms') { executable true }
    }
    mac {
       item('etc/ddms') { executable true }
    }
    windows {
       item 'etc/ddms.bat'
    }
}


// configure the manifest of the buildDistributionJar task.
sdkJar.manifest.attributes("Main-Class": "com.android.ddms.Main")