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

Side by Side Diff: build.gradle

Issue 29479601: Issue 5273 - Automatically update bundled lists (Closed)
Patch Set: Formatting and output when lists were updated Created July 7, 2017, 7:57 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « adblockplussbrowser/build.gradle ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 buildscript { 1 buildscript {
2 repositories { 2 repositories {
3 jcenter() 3 jcenter()
4 } 4 }
5 dependencies { 5 dependencies {
6 classpath 'com.android.tools.build:gradle:2.3.1' 6 classpath 'com.android.tools.build:gradle:2.3.1'
7 } 7 }
8 } 8 }
9 9
10 allprojects { 10 allprojects {
11 repositories { 11 repositories {
12 jcenter() 12 jcenter()
13 } 13 }
14 } 14 }
15 15
16 ext { 16 ext {
17 minSdkVersion = 21 17 minSdkVersion = 21
18 targetSdkVersion = 25 18 targetSdkVersion = 25
19 compileSdkVersion = 25 19 compileSdkVersion = 25
20 buildToolsVersion = '25.0.3' 20 buildToolsVersion = '25.0.3'
21 androidSupportLibraryVersion = '25.3.1' 21 androidSupportLibraryVersion = '25.3.1'
22 sourceCompatibilityVersion = JavaVersion.VERSION_1_7 22 sourceCompatibilityVersion = JavaVersion.VERSION_1_7
23 targetCompatibilityVersion = JavaVersion.VERSION_1_7 23 targetCompatibilityVersion = JavaVersion.VERSION_1_7
24 easyListUpdateUrl = 'https://easylist-downloads.adblockplus.org/easylist.txt '
25 exceptionRulesUpdateUrl = 'https://easylist-downloads.adblockplus.org/except ionrules.txt'
26 easyListFilePath = file('adblockplussbrowser/res/raw/easylist.txt').absolute Path
27 exceptionRulesFilePath = file('adblockplussbrowser/res/raw/exceptionrules.tx t').absolutePath
diegocarloslima 2017/07/07 12:11:09 Do you think that these vars are going to be used
jens 2017/07/07 12:34:44 Yeah exactly, I think the vars can be used for tes
24 } 28 }
OLDNEW
« no previous file with comments | « adblockplussbrowser/build.gradle ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld