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

Side by Side Diff: chrome/android/java/templates/monochrome_application.gni

Issue 2737523003: Remove unused MonochromeApplication template code. (Closed)
Patch Set: Reeebase Created 3 years, 9 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 | « chrome/android/java/templates/MonochromeApplication.template ('k') | no next file » | 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
5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni")
7
8 # Generates monochrome application class.
9 #
10 # Variables
11 # monochrome_application_class: the name of monochrome application class.
12 # package: the package name of monochrome class.
13 # super_class: the super class of monochrome application.
14 # output: the generated application class.
15 template("generate_monochrome_application") {
16 jinja_template(target_name) {
17 forward_variables_from(invoker,
18 [
19 "output",
20 "monochrome_application_class",
21 "package",
22 "super_class",
23 ])
24 assert(defined(output))
25 assert(defined(monochrome_application_class))
26 assert(defined(package))
27 assert(defined(super_class))
28 input = "//chrome/android/java/templates/MonochromeApplication.template"
29 variables = [
30 "package=${package}",
31 "super_class=${super_class}",
32 "monochrome_application_class=${monochrome_application_class}",
33 ]
34 }
35 }
OLDNEW
« no previous file with comments | « chrome/android/java/templates/MonochromeApplication.template ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698