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

build / android / gradle / dependencies.jinja [blame]

{# Copyright 2016 The Chromium Authors #}
{# 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') }}
}