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

Side by Side Diff: trunk/test/generator-output/gyptest-subdir2-deep.py

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2009 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
3 """ 7 """
4 Verifies building a target from a .gyp file a few subdirectories 8 Verifies building a target from a .gyp file a few subdirectories
5 deep when the --generator-output= option is used to put the build 9 deep when the --generator-output= option is used to put the build
6 configuration files in a separate directory tree. 10 configuration files in a separate directory tree.
7 """ 11 """
8 12
9 import TestGyp 13 import TestGyp
10 14
11 test = TestGyp.TestGyp() 15 test = TestGyp.TestGyp()
12 16
(...skipping 10 matching lines...) Expand all
23 27
24 chdir = 'gypfiles' 28 chdir = 'gypfiles'
25 29
26 if test.format == 'xcode': 30 if test.format == 'xcode':
27 chdir = 'src/subdir2/deeper' 31 chdir = 'src/subdir2/deeper'
28 test.run_built_executable('deeper', 32 test.run_built_executable('deeper',
29 chdir=chdir, 33 chdir=chdir,
30 stdout="Hello from deeper.c\n") 34 stdout="Hello from deeper.c\n")
31 35
32 test.pass_test() 36 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698