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

Side by Side Diff: third_party/android_customtabs/customtabs/build.gradle

Issue 1224553003: customtabs: Convert to the new AIDL interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update to external patch #16, rebase and update constants. Created 5 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
OLDNEW
(Empty)
1 apply plugin: 'android-library'
2
3 archivesBaseName = 'customtabs'
4
5 android {
6 compileSdkVersion 'current'
7
8 sourceSets {
9 main.manifest.srcFile 'AndroidManifest.xml'
10 main.java.srcDirs = ['java']
11 main.aidl.srcDirs = ['java']
12 main.res.srcDir 'res'
13 main.assets.srcDir 'assets'
14 main.resources.srcDir 'java'
15 }
16
17 compileOptions {
18 sourceCompatibility JavaVersion.VERSION_1_7
19 targetCompatibility JavaVersion.VERSION_1_7
20 }
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698