| OLD | NEW |
| (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', |
| 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 } |
| OLD | NEW |