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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/generate_manifest.gypi

Issue 295123002: Provide script/gypi support for manifest generation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 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 # Generates an output manifest based on a Jinja2 templated manifest.
6 # Include this file inside of your target to generate a manifest.
7 # The following variables must be set before including this file:
8 #
9 # template_manifest_path: a valid Jinja2 file path.
10 # output_manifest_path: file path for the resulting manifest.
11 #
12 # The following variable is optional:
13 #
14 # is_guest_manifest: 1 or 0; generates a manifest usable while in guest mode.
15
16 {
17 'actions': [
18 {
19 'action_name': 'generate_manifest',
20 'message': 'Generate manifest for <(_target_name)',
21 'variables': {
22 'is_guest_manifest%': 0,
23 },
24 'inputs': [
25 'tools/generate_manifest.py',
26 '<(template_manifest_path)',
27 ],
28 'outputs': [
29 '<(output_manifest_path)'
30 ],
31 'action': [
32 'python',
33 'tools/generate_manifest.py',
34 '-o', '<(output_manifest_path)',
35 '-g', '<(is_guest_manifest)',
36 '<(template_manifest_path)'
37 ],
38 },
39 ],
40 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/chromevox.gyp ('k') | chrome/browser/resources/chromeos/chromevox/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698