| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |