|
OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2013 Google Inc. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style licence that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'make_global_settings': [ | |
7 ['CC', 'clang'], | |
8 ['LINK', 'clang++'], | |
9 ], | |
10 'targets': [ | |
11 { | |
12 'target_name': 'test', | |
13 'type': 'static_library', | |
14 'sources': [ 'foo.c' ], | |
15 }, | |
16 ], | |
17 } | |
OLD | NEW |