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

Side by Side Diff: test/toolsets/gyptest-toolsets.py

Issue 271019: Adding cross-compile ability to the make build (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 11 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 | « pylib/gyp/input.py ('k') | test/toolsets/main.cc » ('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 """
4 Verifies that toolsets are correctly applied
5 """
6
7 import TestGyp
8
9 # Multiple toolsets are currently only supported by the make generator.
10 test = TestGyp.TestGyp(formats=['make'])
11
12 test.run_gyp('toolsets.gyp')
13
14 test.build_all('toolsets.gyp')
15
16 test.run_built_executable('host-main', stdout="Host\n")
17 test.run_built_executable('target-main', stdout="Target\n")
18
19 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/input.py ('k') | test/toolsets/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698