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

Side by Side Diff: test/msvs/prebuild/base/base.gyp

Issue 2866042: Effectively duplicates targets that contain rules/actions, therefore enabling... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2010 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': 'a',
9 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530',
Mark Mentovai 2010/07/07 17:45:28 Not needed (throughout this file).
10 'type': 'static_library',
11 'sources': [
12 'a.c',
13 ],
14 'actions': [ {
15 'inputs': [ 'a.idl' ],
16 'outputs': [ 'idl_a.c' ],
17 'action': 'cp a.idl idl_a.c',
18 'action_name': 'idl',
19 'process_outputs_as_sources': '1',
20 },
21 ],
22 },
23 {
24 'target_name': 'b',
25 'msvs_guid': 'B4D59AE8-97E1-8D2F-A8E9-6D2826729530',
26 'type': 'static_library',
27 'sources': [
28 'b.c',
29 ],
30 'actions': [ {
31 'inputs': [ 'b.idl' ],
32 'outputs': [ 'idl_b.c' ],
33 'action': 'cp b.idl idl_b.c',
34 'action_name': 'idl',
35 },
36 ],
37 },
38 {
39 'target_name': 'c',
40 'msvs_guid': 'B4D59AE8-8D2E-97E1-A8E9-6D2826729530',
41 'type': 'none',
42 'actions': [ {
43 'inputs': [ 'c.idl' ],
44 'outputs': [ 'idl_c.c' ],
45 'action': 'cp c.idl idl_c.c',
46 'action_name': 'idl',
47 'process_outputs_as_sources': '1',
48 },
49 ],
50 },
51 ],
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698