| OLD | NEW |
| 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() |
| OLD | NEW |