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

Side by Side Diff: test/assembly/gyptest-override.py

Issue 11363143: ninja windows: Support x64 configuration platform (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: allow rule override of asm on windows + test Created 8 years, 1 month 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 | « pylib/gyp/msvs_emulation.py ('k') | test/assembly/src/override.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2012 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 that manual rules on Windows override the built in ones.
9 """
10
11 import sys
12 import TestGyp
13
14 if sys.platform == 'win32':
15 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
16 CHDIR = 'src'
17 test.run_gyp('override.gyp', chdir=CHDIR)
18 test.build('override.gyp', test.ALL, chdir=CHDIR)
19 expect = """\
20 Hello from program.c
21 Got 42.
22 """
23 test.run_built_executable('program', chdir=CHDIR, stdout=expect)
24 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/msvs_emulation.py ('k') | test/assembly/src/override.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698