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

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

Issue 295123002: Provide script/gypi support for manifest generation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More style. Created 6 years, 7 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 # Given a base manifest, and an override manifest, produces a merged manifest.
6 # The merge operation preserves all key values in base except when also
7 # specified in override.
8 # For that case, override values replace base (preserving nested dictionaries).
9 # The following variables must be set before including this file:
10 #
11 # base_manifest: a valid JSON file path.
12 # override_manifest: a valid JSON file path.
13 # output_manifest: file path with the resulting manifest.
14
15 {
16 'actions': [
17 {
18 'action_name': 'merge_manifests',
19 'message': 'Output merge manifest for <(_target_name)',
20 'inputs': [
21 'tools/merge_manifests.py',
22 ],
Peter Lundblad 2014/05/22 00:28:25 You need to include the manifest files here as wel
David Tseng 2014/05/22 02:42:04 Done.
23 'outputs': [
24 '<(output_manifest)'
25 ],
26 'action': [
27 'python',
28 'tools/merge_manifests.py',
29 '<(base_manifest)',
30 '<(override_manifest)',
31 '<(output_manifest)',
32 ],
33 },
34 ],
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698