Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: third_party/elfutils/elfutils.gyp

Issue 304953002: Build libelf with host and not target toolchain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698