| OLD | NEW |
| 1 # Copyright (c) 2014 Google Inc. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'test_variable%': 0, | 7 'test_variable%': 0, |
| 8 'variable_path': 'subdir', | 8 'variable_path': 'subdir', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'extension': 'pdf', | 46 'extension': 'pdf', |
| 47 'inputs': [ | 47 'inputs': [ |
| 48 'rule_input.c', | 48 'rule_input.c', |
| 49 ], | 49 ], |
| 50 'outputs': [ | 50 'outputs': [ |
| 51 'rule_output.pdf', | 51 'rule_output.pdf', |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 { |
| 57 'target_name': 'exe2', |
| 58 'type': 'executable', |
| 59 'sources': [ |
| 60 'exe2.c', |
| 61 ], |
| 62 }, |
| 63 { |
| 64 'target_name': 'exe3', |
| 65 'type': 'executable', |
| 66 'dependencies': [ |
| 67 'subdir/subdir.gyp:foo', |
| 68 'subdir/subdir.gyp:subdir2a', |
| 69 ], |
| 70 'sources': [ |
| 71 'exe3.c', |
| 72 ], |
| 73 }, |
| 74 { |
| 75 'target_name': 'all', |
| 76 'type': 'executable', |
| 77 'dependencies': [ |
| 78 'exe', |
| 79 'exe3', |
| 80 ], |
| 81 }, |
| 56 ], | 82 ], |
| 57 } | 83 } |
| OLD | NEW |