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

Side by Side Diff: Application/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 | « no previous file | build.gradle » ('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: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 android { 3 android {
4 compileSdkVersion 23 4 compileSdkVersion 23
5 buildToolsVersion "23.0.1" 5 buildToolsVersion '25.0.0'
6 defaultConfig { 6 defaultConfig {
7 applicationId "org.chromium.customtabsclient.example" 7 applicationId "org.chromium.customtabsclient.example"
8 minSdkVersion 16 8 minSdkVersion 16
9 targetSdkVersion 23 9 targetSdkVersion 23
10 versionCode 1 10 versionCode 1
11 versionName "1.0" 11 versionName "1.0"
12 } 12 }
13 buildTypes { 13 buildTypes {
14 release { 14 release {
15 minifyEnabled false 15 minifyEnabled false
16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro' 16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro'
17 } 17 }
18 } 18 }
19 productFlavors { 19 productFlavors {
20 } 20 }
21 } 21 }
22 22
23 dependencies { 23 dependencies {
24 compile fileTree(include: ['*.jar'], dir: 'libs') 24 compile fileTree(include: ['*.jar'], dir: 'libs')
25 compile project(':customtabs') 25 compile project(':customtabs')
26 compile project(':shared') 26 compile project(':shared')
27 } 27 }
OLDNEW
« no previous file with comments | « no previous file | build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698