| OLD | NEW |
| 1 # Copyright (c) 2013 Google Inc. All rights reserved. | 1 # Copyright (c) 2013 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 { | 5 { |
| 6 'make_global_settings': [ | 6 'make_global_settings': [ |
| 7 ['CC', 'clang'], | 7 ['CC', 'clang'], |
| 8 ['LINK', 'clang++'], | |
| 9 ['CC.host', 'clang'], | 8 ['CC.host', 'clang'], |
| 10 ], | 9 ], |
| 11 'targets': [ | 10 'targets': [ |
| 12 { | 11 { |
| 13 'target_name': 'test', | 12 'target_name': 'test', |
| 14 'type': 'static_library', | 13 'type': 'static_library', |
| 15 'sources': [ 'foo.c' ], | 14 'sources': [ 'foo.c' ], |
| 16 }, | 15 }, |
| 17 ], | 16 ], |
| 18 } | 17 } |
| OLD | NEW |