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

Unified Diff: mojo/public/mojo_application_manifest.gypi

Issue 2164503006: Rename mojo_application GN templates to service* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 | « mojo/public/mojo_application_manifest.gni ('k') | mojo/public/mojo_constants.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/mojo_application_manifest.gypi
diff --git a/mojo/public/mojo_application_manifest.gypi b/mojo/public/mojo_application_manifest.gypi
deleted file mode 100644
index 9b89abb93fd6fe1957a4161818888616befdf63e..0000000000000000000000000000000000000000
--- a/mojo/public/mojo_application_manifest.gypi
+++ /dev/null
@@ -1,56 +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.
-
-{
- 'variables': {
- 'variables': {
- 'application_name%': '<(application_name)',
- 'application_type%': '<(application_type)',
- 'base_manifest%': 'none',
- 'packaged_manifests%': []
- },
- 'application_type%': '<(application_type)',
- 'application_name%': '<(application_name)',
- 'base_manifest%': '<(base_manifest)',
- 'manifest_collator_script%':
- '<(DEPTH)/mojo/public/tools/manifest/manifest_collator.py',
- 'packaged_manifests%': '<(packaged_manifests)',
- 'source_manifest%': '<(source_manifest)',
- 'conditions': [
- ['application_type=="mojo"', {
- 'output_manifest%': '<(PRODUCT_DIR)/Mojo Applications/<(application_name)/manifest.json',
- }, {
- 'output_manifest%': '<(PRODUCT_DIR)/<(application_name)_manifest.json',
- }],
- ['base_manifest!="none"', {
- 'extra_args%': [
- '--base-manifest=<(base_manifest)',
- '<@(packaged_manifests)',
- ],
- }, {
- 'extra_args%': [
- '<@(packaged_manifests)',
- ],
- }]
- ],
- },
- 'actions': [{
- 'action_name': '<(_target_name)_collation',
- 'inputs': [
- '<(manifest_collator_script)',
- '<(source_manifest)',
- ],
- 'outputs': [
- '<(output_manifest)',
- ],
- 'action': [
- 'python',
- '<(manifest_collator_script)',
- '--application-name', '<(application_name)',
- '--parent=<(source_manifest)',
- '--output=<(output_manifest)',
- '<@(extra_args)',
- ],
- }],
-}
« no previous file with comments | « mojo/public/mojo_application_manifest.gni ('k') | mojo/public/mojo_constants.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698