OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'libelf', | 8 'target_name': 'libelf', |
9 'toolsets': ['target'], | 9 'toolsets': ['host'], |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'defines': [ | 11 'defines': [ |
12 '_GNU_SOURCE', | 12 '_GNU_SOURCE', |
13 'HAVE_CONFIG_H', | 13 'HAVE_CONFIG_H', |
14 ], | 14 ], |
15 'cflags': [ | 15 'cflags': [ |
16 '-std=gnu99', | 16 '-std=gnu99', |
17 '-Wall', | 17 '-Wall', |
18 '-Wshadow', | 18 '-Wshadow', |
19 '-Werror', | 19 '-Werror', |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 'src/libelf/libelf_next_prime.c', | 156 'src/libelf/libelf_next_prime.c', |
157 'src/libelf/nlist.c', | 157 'src/libelf/nlist.c', |
158 ], | 158 ], |
159 'direct_dependent_settings': { | 159 'direct_dependent_settings': { |
160 'include_dirs': [ | 160 'include_dirs': [ |
161 './src/libelf', | 161 './src/libelf', |
162 ], | 162 ], |
163 }, | 163 }, |
164 }], | 164 }], |
165 } | 165 } |
OLD | NEW |