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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/android_customtabs/customtabs/build.gradle
diff --git a/third_party/android_customtabs/customtabs/build.gradle b/third_party/android_customtabs/customtabs/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..a8504c720e652f2ade339d56c77acd0755ab5f25
--- /dev/null
+++ b/third_party/android_customtabs/customtabs/build.gradle
@@ -0,0 +1,21 @@
+apply plugin: 'android-library'
+
+archivesBaseName = 'customtabs'
+
+android {
+ compileSdkVersion 'current'
+
+ sourceSets {
+ main.manifest.srcFile 'AndroidManifest.xml'
+ main.java.srcDirs = ['java']
+ main.aidl.srcDirs = ['java']
+ main.res.srcDir 'res'
+ main.assets.srcDir 'assets'
+ main.resources.srcDir 'java'
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698