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

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

Issue 1409853009: third_party: Add support for building libffi for ARM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@exosphere
Patch Set: Created 5 years, 1 month 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 | « third_party/libffi/include/arm-unknown-linux-gnu/include/ffitarget.h ('k') | 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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': 'libffi', 8 'target_name': 'libffi',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 17 matching lines...) Expand all
28 'include_dirs': [ 28 'include_dirs': [
29 'include/x86_64-unknown-linux-gnu', 29 'include/x86_64-unknown-linux-gnu',
30 'include/x86_64-unknown-linux-gnu/include', 30 'include/x86_64-unknown-linux-gnu/include',
31 ], 31 ],
32 'direct_dependent_settings': { 32 'direct_dependent_settings': {
33 'include_dirs': [ 33 'include_dirs': [
34 'include/x86_64-unknown-linux-gnu/include', 34 'include/x86_64-unknown-linux-gnu/include',
35 ], 35 ],
36 }, 36 },
37 }], 37 }],
38 ['target_arch=="arm"', {
39 'sources': [
40 'src/src/arm/ffi.c',
41 'src/src/arm/sysv.S',
42 ],
43 'include_dirs': [
44 'include/arm-unknown-linux-gnu',
45 'include/arm-unknown-linux-gnu/include',
46 ],
47 'direct_dependent_settings': {
48 'include_dirs': [
49 'include/arm-unknown-linux-gnu/include',
50 ],
51 },
52 }],
38 ], 53 ],
39 }, 54 },
40 ], 55 ],
41 } 56 }
OLDNEW
« no previous file with comments | « third_party/libffi/include/arm-unknown-linux-gnu/include/ffitarget.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698