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

Side by Side Diff: test/mac/xcode-gcc/test.gyp

Issue 83113002: Fix gyptest-xcode-gcc.py when using Xcode 5.0.2 (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Remove override of CC/CXX for make & ninja Created 7 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 | Annotate | Revision Log
« no previous file with comments | « test/mac/gyptest-xcode-gcc.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'make_global_settings': [
6 ['CC', '/usr/bin/gcc'],
7 ['CXX', '/usr/bin/g++'],
8 ],
9
10 'target_defaults': { 5 'target_defaults': {
11 'xcode_settings': { 6 'xcode_settings': {
12 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', 7 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',
13 }, 8 },
14 }, 9 },
15 10
16 'variables': { 11 'variables': {
17 # Non-failing tests should check that these trivial files in every language 12 # Non-failing tests should check that these trivial files in every language
18 # still compile correctly. 13 # still compile correctly.
19 'valid_sources': [ 14 'valid_sources': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 { 51 {
57 'target_name': 'warn_about_missing_newline-fail', 52 'target_name': 'warn_about_missing_newline-fail',
58 'type': 'executable', 53 'type': 'executable',
59 'sources': [ 'warn_about_missing_newline.c', ], 54 'sources': [ 'warn_about_missing_newline.c', ],
60 'xcode_settings': { 55 'xcode_settings': {
61 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', 56 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
62 }, 57 },
63 }, 58 },
64 ], 59 ],
65 } 60 }
OLDNEW
« no previous file with comments | « test/mac/gyptest-xcode-gcc.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698