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

Side by Side Diff: services/shell/public/service_manifest.gypi

Issue 2321803002: Deletes remaining traces of gyp in services/ and mojo/ (Closed)
Patch Set: Created 4 years, 3 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 | « services/shell/public/interfaces/BUILD.gn ('k') | services/shell/shell.gyp » ('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
5 {
6 'variables': {
7 'variables': {
8 'name%': '<(name)',
9 'type%': '<(type)',
10 'base_manifest%': 'none',
11 'packaged_manifests%': []
12 },
13 'type%': '<(type)',
14 'name%': '<(name)',
15 'base_manifest%': '<(base_manifest)',
16 'manifest_collator_script%':
17 '<(DEPTH)/services/shell/public/tools/manifest/manifest_collator.py',
18 'packaged_manifests%': '<(packaged_manifests)',
19 'source_manifest%': '<(source_manifest)',
20 'conditions': [
21 ['type=="mojo"', {
22 'output_manifest%': '<(PRODUCT_DIR)/Packages/<(name)/manifest.json',
23 }, {
24 'output_manifest%': '<(PRODUCT_DIR)/<(name)_manifest.json',
25 }],
26 ['base_manifest!="none"', {
27 'extra_args%': [
28 '--base-manifest=<(base_manifest)',
29 '<@(packaged_manifests)',
30 ],
31 }, {
32 'extra_args%': [
33 '<@(packaged_manifests)',
34 ],
35 }]
36 ],
37 },
38 'actions': [{
39 'action_name': '<(_target_name)_collation',
40 'inputs': [
41 '<(manifest_collator_script)',
42 '<(source_manifest)',
43 ],
44 'outputs': [
45 '<(output_manifest)',
46 ],
47 'action': [
48 'python',
49 '<(manifest_collator_script)',
50 '--name', '<(name)',
51 '--parent=<(source_manifest)',
52 '--output=<(output_manifest)',
53 '<@(extra_args)',
54 ],
55 }],
56 }
OLDNEW
« no previous file with comments | « services/shell/public/interfaces/BUILD.gn ('k') | services/shell/shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698