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

Side by Side Diff: test/subdirectory/gyptest-subdir-all.py

Issue 11659002: Teach ninja to handle output directories outside the source dir. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 12 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2012 Google Inc. All rights reserved. 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 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 Verifies building a subsidiary dependent target from a .gyp file in a 8 Verifies building a subsidiary dependent target from a .gyp file in a
9 subdirectory, without specifying an explicit output build directory, 9 subdirectory, without specifying an explicit output build directory,
10 and using the subdirectory's solution or project file as the entry point. 10 and using the subdirectory's solution or project file as the entry point.
11 """ 11 """
12 12
13 import TestGyp 13 import TestGyp
14 14
15 # Ninja and Android don't support running from subdirectories. 15 # Android doesn't support running from subdirectories.
16 # Ninja doesn't support relocation.
16 test = TestGyp.TestGyp(formats=['!ninja', '!android']) 17 test = TestGyp.TestGyp(formats=['!ninja', '!android'])
17 18
18 test.run_gyp('prog1.gyp', chdir='src') 19 test.run_gyp('prog1.gyp', chdir='src')
19 20
20 test.relocate('src', 'relocate/src') 21 test.relocate('src', 'relocate/src')
21 22
22 chdir = 'relocate/src/subdir' 23 chdir = 'relocate/src/subdir'
23 target = test.ALL 24 target = test.ALL
24 25
25 test.build('prog2.gyp', target, chdir=chdir) 26 test.build('prog2.gyp', target, chdir=chdir)
26 27
27 test.built_file_must_not_exist('prog1', type=test.EXECUTABLE, chdir=chdir) 28 test.built_file_must_not_exist('prog1', type=test.EXECUTABLE, chdir=chdir)
28 29
29 test.run_built_executable('prog2', 30 test.run_built_executable('prog2',
30 chdir=chdir, 31 chdir=chdir,
31 stdout="Hello from prog2.c\n") 32 stdout="Hello from prog2.c\n")
32 33
33 test.pass_test() 34 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698