SetupWizardLibrary/tools/gradle/settings.gradle
Maurice Lam a211294e1c [SuwLib] Generate javadocs
Configure javadocs so that it can be generated with `./gradlew docs`
Split self.gradle from build.gradle, so that self.gradle can be used
to configure tasks only available to a build on ub-setupwizard-*,
while build.gradle will be used for building from source in other
gradle projects (e.g. GMS core).

Bug: 21444334
Change-Id: Icec763ce7dcf8939b7918b580e17ae22353cb38c
2015-08-10 18:04:09 +00:00

15 lines
627 B
Groovy

include(':setup-wizard-lib')
project(':setup-wizard-lib').projectDir = new File(rootDir, 'frameworks/opt/setupwizard/library')
project(':setup-wizard-lib').buildFileName = 'self.gradle'
File supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/linux/platforms/android-22/support")
if (!supportLibsRoot.exists()) {
supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/darwin/platforms/android-22/support")
}
include(':support-v4')
project(':support-v4').projectDir = new File(supportLibsRoot, 'v4')
include(':support-appcompat-v7')
project(':support-appcompat-v7').projectDir = new File(supportLibsRoot, 'appcompat')