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

Side by Side Diff: test/actions-multiple-outputs-with-dependencies/src/action.gyp

Issue 1177163002: Fix gyp->make translation of rules with several outputs. (Closed) Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: Test case added. Created 5 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
OLDNEW
(Empty)
1 # Copyright (c) 2015 Google Inc. 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 'targets': [
7 {
8 'target_name': 'upper',
9 'type': 'none',
10 'actions': [{
11 'action_name': 'upper_action',
12 'inputs': ['<(PRODUCT_DIR)/out2.txt'],
13 'outputs': ['<(PRODUCT_DIR)/result.txt'],
14 'action': ['python', 'rcopy.py', '<@(_inputs)', '<@(_outputs)'],
15 }],
16 },
17 {
18 'target_name': 'lower',
19 'type': 'none',
20 'actions': [{
21 'action_name': 'lower_action',
22 'inputs': ['input.txt'],
23 'outputs': ['<(PRODUCT_DIR)/out1.txt', '<(PRODUCT_DIR)/out2.txt'],
24 'action': ['python', 'rcopy.py', '<@(_inputs)', '<@(_outputs)'],
25 }],
26 },
27 ],
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698