Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: build/android/gradle/dependencies.jinja

Issue 2621413002: Android: Split up build.gradle.jinja (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/gradle/build.gradle.jinja ('k') | build/android/gradle/generate_gradle.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {# Copyright 2016 The Chromium Authors. All rights reserved. #}
2 {# Use of this source code is governed by a BSD-style license that can be #}
3 {# found in the LICENSE file. #}
4 dependencies {
5 {% for path in prebuilts %}
6 {{ depCompileName }} files("{{ path }}")
7 {% endfor %}
8 {% for proj in java_project_deps %}
9 {{ depCompileName }} project(":{{ proj }}")
10 {% endfor %}
11 {% for proj in android_project_deps %}
12 {{ depCompileName }} project(path: ":{{ proj }}", configuration: "debug")
13 {% endfor %}
14 }
OLDNEW
« no previous file with comments | « build/android/gradle/build.gradle.jinja ('k') | build/android/gradle/generate_gradle.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698