aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC. Sean Young <csyoung@google.com>2015-06-10 12:47:21 -0500
committerC. Sean Young <csyoung@google.com>2015-06-10 15:08:46 -0500
commit8fffa0b462fe681b9367e5d5cc3ec33bc47245a5 (patch)
tree6e7134395829f679ad8458f17399c39be82de435
parenta8986b15aa89da6bfe502821a29fd3ef4595d7d5 (diff)
downloadjdiff-8fffa0b462fe681b9367e5d5cc3ec33bc47245a5.tar.gz
Add build.gradle
Change-Id: Id10bda5db7f7b6c0d205aaa0ed09dbe095b790f4
-rw-r--r--build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..74b8b60
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import com.android.internal.BuildUtils
+
+apply plugin: 'java'
+
+sourceSets {
+ main {
+ java.srcDirs = ['src']
+ }
+}
+
+dependencies {
+ compile files(BuildUtils.findToolsJar(project))
+}