| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2014 Google Inc. All rights reserved. | 3 # Copyright (c) 2014 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Make sure macro expansion of $(TargetFileName) is handled. | 8 Make sure macro expansion of $(TargetFileName) is handled. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 import TestGyp | 11 import TestGyp |
| 12 | 12 |
| 13 import os |
| 13 import sys | 14 import sys |
| 14 | 15 |
| 15 if sys.platform == 'win32': | 16 if sys.platform == 'win32': |
| 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) | 17 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) |
| 17 | 18 if not (test.format == 'msvs' and |
| 18 CHDIR = 'vs-macros' | 19 int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013): |
| 19 test.run_gyp('targetfilename.gyp', chdir=CHDIR) | 20 CHDIR = 'vs-macros' |
| 20 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR) | 21 test.run_gyp('targetfilename.gyp', chdir=CHDIR) |
| 21 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR) | 22 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR) |
| 22 test.built_file_must_exist('test_targetfilename_loadable_module.dll', | 23 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR
) |
| 23 chdir=CHDIR) | 24 test.built_file_must_exist('test_targetfilename_loadable_module.dll', |
| 24 test.built_file_must_exist('test_targetfilename_shared_library.dll', | 25 chdir=CHDIR) |
| 25 chdir=CHDIR) | 26 test.built_file_must_exist('test_targetfilename_shared_library.dll', |
| 26 test.built_file_must_exist('test_targetfilename_static_library.lib', | 27 chdir=CHDIR) |
| 27 chdir=CHDIR) | 28 test.built_file_must_exist('test_targetfilename_static_library.lib', |
| 28 test.built_file_must_exist('test_targetfilename_product_extension.foo', | 29 chdir=CHDIR) |
| 29 chdir=CHDIR) | 30 test.built_file_must_exist('test_targetfilename_product_extension.foo', |
| 30 test.pass_test() | 31 chdir=CHDIR) |
| 32 test.pass_test() |
| OLD | NEW |