Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: test/win/gyptest-macro-targetfilename.py

Issue 629543002: Add Ninja support for MSVS $(TargetExt), $(TargetFileName) and $(TargetPath) macros. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Reuse dictionary from MSVSUtil. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/win/gyptest-macro-targetext.py ('k') | test/win/gyptest-macro-targetpath.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
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
5 # found in the LICENSE file.
6
7 """
8 Make sure macro expansion of $(TargetFileName) is handled.
9 """
10
11 import TestGyp
12
13 import sys
14
15 if sys.platform == 'win32':
16 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
17
18 CHDIR = 'vs-macros'
19 test.run_gyp('targetfilename.gyp', chdir=CHDIR)
20 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR)
21 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR)
22 test.built_file_must_exist('test_targetfilename_loadable_module.dll',
23 chdir=CHDIR)
24 test.built_file_must_exist('test_targetfilename_shared_library.dll',
25 chdir=CHDIR)
26 test.built_file_must_exist('test_targetfilename_static_library.lib',
27 chdir=CHDIR)
28 test.built_file_must_exist('test_targetfilename_product_extension.foo',
29 chdir=CHDIR)
30 test.pass_test()
OLDNEW
« no previous file with comments | « test/win/gyptest-macro-targetext.py ('k') | test/win/gyptest-macro-targetpath.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698