Move FLAC assets from extractor to testdata module

PiperOrigin-RevId: 293552271
This commit is contained in:
kimvde 2020-02-06 10:40:39 +00:00 committed by kim-vde
parent 0dd8e6a7c1
commit 011efcc522
46 changed files with 3 additions and 0 deletions

View file

@ -33,6 +33,8 @@ android {
}
}
sourceSets.test.assets.srcDirs = ['src/test/assets/', '../../testdata/src/test/assets/']
testOptions.unitTests.includeAndroidResources = true
}
@ -43,6 +45,7 @@ dependencies {
implementation project(modulePrefix + 'library-common')
testImplementation project(modulePrefix + 'library-core')
testImplementation project(modulePrefix + 'testutils')
testImplementation project(modulePrefix + 'testdata')
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
}