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