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

Delta Between Two Patch Sets: libadblockplus-android-webview/build.gradle

Issue 29347926: Issue 4248 - Add codestyle check
Left Patch Set: added Gradle support, removed Ant support, added original files URLs Created April 14, 2017, 11:56 a.m.
Right Patch Set: moved 'third_party' to review https://codereview.adblockplus.org/29567648/ Created Oct. 6, 2017, 11:33 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « libadblockplus-android-tests/build.gradle ('k') | libadblockplus-android-webviewapp/build.gradle » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 apply plugin: 'com.android.library' 1 apply plugin: 'com.android.library'
2 apply plugin: 'checkstyle' 2 apply plugin: 'checkstyle'
3 3
4 android { 4 android {
5 compileSdkVersion 21 5 compileSdkVersion 21
6 buildToolsVersion "25.0.0" 6 buildToolsVersion "25.0.0"
7 7
8 defaultConfig { 8 defaultConfig {
9 minSdkVersion 21 9 minSdkVersion 21
10 targetSdkVersion 21 10 targetSdkVersion 21
(...skipping 30 matching lines...) Expand all
41 ignoreFailures = true 41 ignoreFailures = true
42 showViolations = true 42 showViolations = true
43 source 'src/org/adblockplus/' 43 source 'src/org/adblockplus/'
44 exclude '**/gen/**' 44 exclude '**/gen/**'
45 exclude '**/R.java' 45 exclude '**/R.java'
46 exclude '**/BuildConfig.java' 46 exclude '**/BuildConfig.java'
47 reports { 47 reports {
48 xml.destination "$project.buildDir/reports/checkstyle/main.xml" 48 xml.destination "$project.buildDir/reports/checkstyle/main.xml"
49 } 49 }
50 classpath = files() 50 classpath = files()
51 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_checks.xml") 51 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_production_checks.xml")
52 configProperties = [ 52 configProperties = [
53 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt") 53 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt")
54 ] 54 ]
55 } 55 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld