summaryrefslogtreecommitdiff
path: root/deps/v8/build/android/gradle/dependencies.jinja
blob: 87bc31285300d7c793b5a235b7722154ca482d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{# 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. #}
{% macro expand_deps(variables, prefix) %}
{% if variables is defined %}
{% if variables.prebuilts is defined %}
{% for path in variables.prebuilts %}
    {{ prefix }} files("{{ path }}")
{% endfor %}
{% endif %}
{% if variables.java_project_deps is defined %}
{% for proj in variables.java_project_deps %}
    {{ prefix }} project(":{{ proj }}")
{% endfor %}
{% endif %}
{% if variables.android_project_deps is defined %}
{% for proj in variables.android_project_deps %}
    {{ prefix }} project(path: ":{{ proj }}")
{% endfor %}
{% endif %}
{% endif %}
{% endmacro %}

dependencies {
{{ expand_deps(main, 'implementation') }}
{{ expand_deps(test, 'testImplementation') }}
{{ expand_deps(android_test, 'androidTestImplementation') }}
}