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