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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/android/java/templates/MonochromeApplication.template ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/templates/monochrome_application.gni
diff --git a/chrome/android/java/templates/monochrome_application.gni b/chrome/android/java/templates/monochrome_application.gni
deleted file mode 100644
index 70a1918c91b57ddf7a6e2ddf62c97c1167b9b1b4..0000000000000000000000000000000000000000
--- a/chrome/android/java/templates/monochrome_application.gni
+++ /dev/null
@@ -1,35 +0,0 @@
-# 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.
-
-import("//build/config/android/config.gni")
-import("//build/config/android/rules.gni")
-
-# Generates monochrome application class.
-#
-# Variables
-# monochrome_application_class: the name of monochrome application class.
-# package: the package name of monochrome class.
-# super_class: the super class of monochrome application.
-# output: the generated application class.
-template("generate_monochrome_application") {
- jinja_template(target_name) {
- forward_variables_from(invoker,
- [
- "output",
- "monochrome_application_class",
- "package",
- "super_class",
- ])
- assert(defined(output))
- assert(defined(monochrome_application_class))
- assert(defined(package))
- assert(defined(super_class))
- input = "//chrome/android/java/templates/MonochromeApplication.template"
- variables = [
- "package=${package}",
- "super_class=${super_class}",
- "monochrome_application_class=${monochrome_application_class}",
- ]
- }
-}
« 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