summaryrefslogtreecommitdiff
path: root/build-full.gradle
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2016-02-22 14:24:21 -0800
committerSailesh Nepal <sail@google.com>2016-02-22 14:24:21 -0800
commit186a1162e554ef7178d6bb8362cad97baeba0397 (patch)
tree776113f3f1dbd9d06c96f460981c97530714c457 /build-full.gradle
parent365cb132aed0abe6f0bc60ebd014f0d1f8dc9d5c (diff)
downloadlibphonenumber-186a1162e554ef7178d6bb8362cad97baeba0397.tar.gz
Add new gradle build file to libphonenumber
This CL adds a new build-full.gradle file to libphonenumber. This is used by dialer. The existing build.gradle is missing things like geocoder and protos. Bug: 26676586 Change-Id: I4078dddd01d512b6447376176842f5d50b8d295e
Diffstat (limited to 'build-full.gradle')
-rw-r--r--build-full.gradle14
1 files changed, 14 insertions, 0 deletions
diff --git a/build-full.gradle b/build-full.gradle
new file mode 100644
index 00000000..bc879b92
--- /dev/null
+++ b/build-full.gradle
@@ -0,0 +1,14 @@
+apply plugin: 'java'
+apply plugin: 'protobuf'
+
+sourceSets.main {
+ java.srcDirs = [
+ 'libphonenumber/src',
+ 'internal/prefixmapper/src',
+ 'geocoder/src'
+ ]
+}
+
+dependencies {
+ compile project(path: ':libprotobuf', configuration: 'nano')
+}