Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: customtabs/build.gradle

Issue 2978593002: Add validateOrigin() to the support library. (Closed)
Patch Set: Comment. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build.gradle ('k') | customtabs/src/android/support/customtabs/CustomTabsCallback.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 apply plugin: 'android-library' 1 apply plugin: 'android-library'
2 2
3 dependencies { 3 dependencies {
4 compile 'com.android.support:support-annotations:22.2.0+' 4 compile 'com.android.support:support-annotations:24.2.0+'
5 compile 'com.android.support:support-v4:25.0.1' 5 compile 'com.android.support:support-v4:25.3.1'
6
7 androidTestCompile 'junit:junit:4.12'
8 androidTestCompile 'com.android.support.test:runner:0.5'
9 androidTestCompile 'com.android.support.test:rules:0.5'
6 } 10 }
7 11
8 android { 12 android {
9 compileSdkVersion 23 13 compileSdkVersion 23
10 buildToolsVersion "23.0.1" 14 buildToolsVersion '25.0.0'
15
16 defaultConfig {
17 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunne r"
18 }
11 19
12 sourceSets { 20 sourceSets {
13 main.manifest.srcFile 'AndroidManifest.xml' 21 main.manifest.srcFile 'AndroidManifest.xml'
14 main.java.srcDirs = ['src'] 22 main.java.srcDirs = ['src']
15 main.aidl.srcDirs = ['src'] 23 main.aidl.srcDirs = ['src']
16 main.res.srcDir 'res' 24 main.res.srcDir 'res'
17 main.assets.srcDir 'assets' 25 main.assets.srcDir 'assets'
18 main.resources.srcDir 'java' 26 main.resources.srcDir 'java'
19 27
20 androidTest.setRoot('tests') 28 androidTest.setRoot('tests')
21 androidTest.java.srcDir('tests/src/') 29 androidTest.java.srcDir('tests/src/')
22 } 30 }
23 31
24 compileOptions { 32 compileOptions {
25 sourceCompatibility JavaVersion.VERSION_1_7 33 sourceCompatibility JavaVersion.VERSION_1_7
26 targetCompatibility JavaVersion.VERSION_1_7 34 targetCompatibility JavaVersion.VERSION_1_7
27 } 35 }
28 } 36 }
OLDNEW
« no previous file with comments | « build.gradle ('k') | customtabs/src/android/support/customtabs/CustomTabsCallback.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698