| OLD | NEW |
| (Empty) | |
| 1 #!/usr/bin/env python |
| 2 |
| 3 # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 """ Verifies that VS variables that require special variables are expanded |
| 8 correctly. """ |
| 9 |
| 10 import sys |
| 11 import TestGyp |
| 12 |
| 13 if sys.platform == 'win32': |
| 14 test = TestGyp.TestGyp() |
| 15 |
| 16 test.run_gyp('special-variables.gyp', chdir='src') |
| 17 test.build('special-variables.gyp', test.ALL, chdir='src') |
| 18 test.pass_test() |
| OLD | NEW |