aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@google.com>2014-04-04 09:06:26 -0700
committerXavier Ducrohet <xav@google.com>2014-05-08 11:13:15 -0700
commit29a76d6831e2ec4b8d2bfb32dce7b3c94e8b40fe (patch)
treec58488de4e4e0c7769640787e676977249d9e5ad /build.gradle
parent5d7058e521c0b67a07086e51032f018838044f1f (diff)
downloadsdk-29a76d6831e2ec4b8d2bfb32dce7b3c94e8b40fe.zip
sdk-29a76d6831e2ec4b8d2bfb32dce7b3c94e8b40fe.tar.gz
sdk-29a76d6831e2ec4b8d2bfb32dce7b3c94e8b40fe.tar.bz2
A build.gradle for sdk components.
Change-Id: If1005dc809110125ab3faf2a6c83642d34be3442
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle41
1 files changed, 41 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..e73607b
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,41 @@
+apply plugin: 'sdk-files'
+
+sdk {
+ common {
+ path('files/tools_source.properties') { name 'source.properties' }
+ path('files/plugin.prop') { into 'lib' }
+
+ path('emulator/snapshot/snapshots.img') { into 'lib/emulator' }
+ path('emulator/skins/dynamic') { into 'lib/emulator/skins/dynamic' }
+
+ path('templates/build.template') { into 'lib' }
+ path('templates/uibuild.template') { into 'lib' }
+ path('templates/build_gradle.template') { into 'lib' }
+
+ path('files/ant') { into 'ant' }
+ path('files/sdk_files_NOTICE.txt') {
+ into 'ant'
+ name 'NOTICE.txt'
+ }
+
+ path('files/devices.xml') { into 'lib' }
+ path('files/android.el') { into 'lib' }
+
+ path('apps/SdkController') { into 'apps/SdkController' }
+
+ path('files/typos') { into 'support' }
+ }
+
+ linux {
+
+ }
+
+ mac {
+
+ }
+
+ windows {
+
+ }
+
+} \ No newline at end of file