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

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

Issue 61293005: ninja: use clang by default on Mac, matching recent Xcodes (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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
5 'target_defaults': { 10 'target_defaults': {
6 'xcode_settings': { 11 'xcode_settings': {
7 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', 12 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',
8 }, 13 },
9 }, 14 },
10 15
11 'variables': { 16 'variables': {
12 # Non-failing tests should check that these trivial files in every language 17 # Non-failing tests should check that these trivial files in every language
13 # still compile correctly. 18 # still compile correctly.
14 'valid_sources': [ 19 'valid_sources': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 { 56 {
52 'target_name': 'warn_about_missing_newline-fail', 57 'target_name': 'warn_about_missing_newline-fail',
53 'type': 'executable', 58 'type': 'executable',
54 'sources': [ 'warn_about_missing_newline.c', ], 59 'sources': [ 'warn_about_missing_newline.c', ],
55 'xcode_settings': { 60 'xcode_settings': {
56 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', 61 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
57 }, 62 },
58 }, 63 },
59 ], 64 ],
60 } 65 }
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