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

Side by Side Diff: test/mac/gyptest-cflags.py

Issue 23600042: ninja&make/mac: Only pass -x for loadable_modules. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 3 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
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()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698