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 } | |
| OLD | NEW |