1 2 #!/usr/bin/env python 3 4 # Copyright (c) 2012 Google Inc. All rights reserved. 5 # Use of this source code is governed by a BSD-style license that can be 6 # found in the LICENSE file. 7 8 """ 9 Verifies that compile-time flags work. 10 """ 11 12 import TestGyp 13 14 import sys 15 16 if sys.platform == 'darwin': 17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) 18 CHDIR = 'cflags' 19 test.run_gyp('test.gyp', chdir=CHDIR) 20 test.build('test.gyp', test.ALL, chdir=CHDIR) 21 test.pass_test() 22