Index: build/android/gradle/dependencies.jinja |
diff --git a/build/android/gradle/dependencies.jinja b/build/android/gradle/dependencies.jinja |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7cc91eb694cafe41a6c2dc54a3a5ece0b9ccbaed |
--- /dev/null |
+++ b/build/android/gradle/dependencies.jinja |
@@ -0,0 +1,14 @@ |
+{# Copyright 2016 The Chromium Authors. All rights reserved. #} |
+{# Use of this source code is governed by a BSD-style license that can be #} |
+{# found in the LICENSE file. #} |
+dependencies { |
+{% for path in prebuilts %} |
+ {{ depCompileName }} files("{{ path }}") |
+{% endfor %} |
+{% for proj in java_project_deps %} |
+ {{ depCompileName }} project(":{{ proj }}") |
+{% endfor %} |
+{% for proj in android_project_deps %} |
+ {{ depCompileName }} project(path: ":{{ proj }}", configuration: "debug") |
+{% endfor %} |
+} |