| OLD | NEW |
| 1 | |
| 2 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 3 | 2 |
| 4 # Copyright (c) 2012 Google Inc. All rights reserved. | 3 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 5 # 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 |
| 6 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 7 | 6 |
| 8 """ | 7 """ |
| 9 Verifies that compile-time flags work. | 8 Verifies that compile-time flags work. |
| 10 """ | 9 """ |
| 11 | 10 |
| 12 import TestGyp | 11 import TestGyp |
| 13 | 12 |
| 14 import sys | 13 import sys |
| 15 | 14 |
| 16 if sys.platform == 'darwin': | 15 if sys.platform == 'darwin': |
| 17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) | 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| 18 CHDIR = 'cflags' | 17 CHDIR = 'cflags' |
| 19 test.run_gyp('test.gyp', chdir=CHDIR) | 18 test.run_gyp('test.gyp', chdir=CHDIR) |
| 20 test.build('test.gyp', test.ALL, chdir=CHDIR) | 19 test.build('test.gyp', test.ALL, chdir=CHDIR) |
| 21 test.pass_test() | 20 test.pass_test() |
| OLD | NEW |