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

Side by Side Diff: test/mac/gyptest-global-settings.py

Issue 421453003: Add TestGypXcodeNinja to run tests against the xcode-ninja generator (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rebase onto origin/master Created 6 years 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
« no previous file with comments | « test/mac/gyptest-cflags.py ('k') | test/mac/gyptest-installname.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 that the global xcode_settings processing doesn't throw. 8 Verifies that the global xcode_settings processing doesn't throw.
9 Regression test for http://crbug.com/109163 9 Regression test for http://crbug.com/109163
10 """ 10 """
11 11
12 import TestGyp 12 import TestGyp
13 13
14 import sys 14 import sys
15 15
16 if sys.platform == 'darwin': 16 if sys.platform == 'darwin':
17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) 17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'])
18
19 # The xcode-ninja generator handles gypfiles which are not at the
20 # project root incorrectly.
21 # cf. https://code.google.com/p/gyp/issues/detail?id=460
22 if test.format == 'xcode-ninja':
23 test.skip_test()
24
18 test.run_gyp('src/dir2/dir2.gyp', chdir='global-settings', depth='src') 25 test.run_gyp('src/dir2/dir2.gyp', chdir='global-settings', depth='src')
19 # run_gyp shouldn't throw. 26 # run_gyp shouldn't throw.
20 27
21 # Check that BUILT_PRODUCTS_DIR was set correctly, too. 28 # Check that BUILT_PRODUCTS_DIR was set correctly, too.
22 test.build('dir2/dir2.gyp', 'dir2_target', chdir='global-settings/src', 29 test.build('dir2/dir2.gyp', 'dir2_target', chdir='global-settings/src',
23 SYMROOT='../build') 30 SYMROOT='../build')
24 test.built_file_must_exist('file.txt', chdir='global-settings/src') 31 test.built_file_must_exist('file.txt', chdir='global-settings/src')
25 32
26 test.pass_test() 33 test.pass_test()
OLDNEW
« no previous file with comments | « test/mac/gyptest-cflags.py ('k') | test/mac/gyptest-installname.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698