| OLD | NEW |
| 1 # Copyright (c) 2009 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 |
| 1 # This is a simple test file to make sure that variable substitution | 5 # This is a simple test file to make sure that variable substitution |
| 2 # happens correctly. Run "run_tests.py" using python to generate the | 6 # happens correctly. Run "run_tests.py" using python to generate the |
| 3 # output from this gyp file. | 7 # output from this gyp file. |
| 4 | 8 |
| 5 { | 9 { |
| 6 'variables': { | 10 'variables': { |
| 7 'pi': 'import math; print math.pi', | 11 'pi': 'import math; print math.pi', |
| 8 'third_letters': "<(other_letters)HIJK", | 12 'third_letters': "<(other_letters)HIJK", |
| 9 'letters_list': 'ABCD', | 13 'letters_list': 'ABCD', |
| 10 'other_letters': '<(letters_list)EFG', | 14 'other_letters': '<(letters_list)EFG', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'action': [ | 75 'action': [ |
| 72 'echo', | 76 'echo', |
| 73 '<(_inputs)', | 77 '<(_inputs)', |
| 74 '<(_outputs)', | 78 '<(_outputs)', |
| 75 ], | 79 ], |
| 76 }, | 80 }, |
| 77 ], | 81 ], |
| 78 }, | 82 }, |
| 79 ], | 83 ], |
| 80 } | 84 } |
| OLD | NEW |