Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus-android-tests/build.gradle

Issue 29411633: Issue 5136 - Add test for AndroidWebRequestResourceWrapper (Closed)
Patch Set: Created April 13, 2017, 1:40 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 apply plugin: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 allprojects { 3 allprojects {
4 repositories { 4 repositories {
5 mavenLocal() 5 mavenLocal()
6 mavenCentral() 6 mavenCentral()
7 } 7 }
8 } 8 }
9 9
10 repositories { 10 repositories {
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 26
27 sourceSets { 27 sourceSets {
28 main { 28 main {
29 manifest.srcFile 'AndroidManifest.xml' 29 manifest.srcFile 'AndroidManifest.xml'
30 } 30 }
31 31
32 androidTest { 32 androidTest {
33 manifest.srcFile 'AndroidManifest.xml' 33 manifest.srcFile 'AndroidManifest.xml'
34 java.srcDirs = ['src'] 34 java.srcDirs = ['src']
35 res.srcDirs = ['res']
anton 2017/04/13 13:46:50 now we need some preloaded subscriptions files in
35 36
36 jni { 37 jni {
37 dependencies { 38 dependencies {
38 project ":libadblockplus-android" 39 project ":libadblockplus-android"
39 } 40 }
40 } 41 }
41 } 42 }
42 } 43 }
43 } 44 }
44 45
45 dependencies { 46 dependencies {
46 androidTestCompile project(':libadblockplus-android') 47 androidTestCompile project(':libadblockplus-android')
47 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') 48 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld