Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2014 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 'type': 'executable', | |
| 10 'sources': [ | |
| 11 'a.c', | |
| 12 ], | |
| 13 'dependencies': [ | |
| 14 'b', | |
| 15 'c', | |
| 16 ], | |
| 17 }, | |
| 18 { | |
| 19 'target_name': 'b', | |
| 20 'type': 'executable', | |
| 21 'sources': [ | |
| 22 'b.c', | |
| 23 ], | |
| 24 'dependencies': [ | |
| 25 'd', | |
| 26 ], | |
| 27 }, | |
| 28 { | |
| 29 'target_name': 'c', | |
| 30 'type': 'executable', | |
| 31 'sources': [ | |
| 32 'c.c', | |
| 33 ], | |
| 34 'dependencies': [ | |
| 35 'b', | |
| 36 'd', | |
| 37 ], | |
| 38 }, | |
| 39 { | |
| 40 'target_name': 'd', | |
| 41 'type': 'executable', | |
| 42 'sources': [ | |
| 43 'd.c', | |
| 44 ], | |
| 45 }, | |
| 46 { | |
| 47 'target_name': 'e', | |
| 48 'type': 'executable', | |
| 49 'dependencies': [ | |
| 50 'test5.gyp:f', | |
| 51 ], | |
| 52 }, | |
| 53 { | |
| 54 'target_name': 'h', | |
| 55 'type': 'none', | |
| 56 'dependencies': [ | |
| 57 'i', | |
| 58 ], | |
| 59 'rules': [ | |
| 60 { | |
| 61 'rule_name': 'rule', | |
| 62 'extension': 'pdf', | |
| 63 'inputs': [ | |
| 64 'rule_input.c', | |
| 65 ], | |
| 66 'outputs': [ | |
| 67 'rule_output.pdf', | |
| 68 ], | |
| 69 }, | |
| 70 ], | |
| 71 }, | |
| 72 { | |
| 73 'target_name': 'i', | |
| 74 'type': 'static_library', | |
| 75 'sources': [ | |
| 76 'i.c', | |
| 77 ], | |
| 78 }, | |
| 79 ], | |
| 80 } | |
| OLD | NEW |